From adffaff05968ec69894b9a1c03628291632d3e3f Mon Sep 17 00:00:00 2001 From: Kazuaki Matsuo Date: Mon, 25 Mar 2024 19:10:46 -0700 Subject: [PATCH] add asJson false --- lib/devicectl.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib/devicectl.js b/lib/devicectl.js index 834f4c40f..813956da0 100644 --- a/lib/devicectl.js +++ b/lib/devicectl.js @@ -286,6 +286,6 @@ export class Devicectl { subcommandOptions.push('--environment-variables', JSON.stringify(_.mapValues(env, (v) => _.toString(v)))); }; - await this.execute(['device', 'process', 'launch'], { subcommandOptions }); + await this.execute(['device', 'process', 'launch'], { subcommandOptions, asJson: false}); } }