From 406f8b145a0f6ae8570b11376b07f858c5125e04 Mon Sep 17 00:00:00 2001 From: Brian Gough Date: Tue, 19 Apr 2022 10:11:55 +0100 Subject: [PATCH] fix formatting GitOrigin-RevId: 60bd152226db705250f49eb892c6cf75b1b265fc --- services/clsi/app/js/LocalCommandRunner.js | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/services/clsi/app/js/LocalCommandRunner.js b/services/clsi/app/js/LocalCommandRunner.js index b1240d29ab..f8470f7b05 100644 --- a/services/clsi/app/js/LocalCommandRunner.js +++ b/services/clsi/app/js/LocalCommandRunner.js @@ -50,7 +50,11 @@ module.exports = CommandRunner = { } // run command as detached process so it has its own process group (which can be killed if needed) - const proc = spawn(command[0], command.slice(1), { cwd: directory, env, stdio: ['pipe', 'pipe', 'ignore'] }) + const proc = spawn(command[0], command.slice(1), { + cwd: directory, + env, + stdio: ['pipe', 'pipe', 'ignore'], + }) let stdout = '' proc.stdout.setEncoding('utf8').on('data', data => (stdout += data))