summary refs log tree commit diff
path: root/bundle/scripts/utils.js
diff options
context:
space:
mode:
Diffstat (limited to 'bundle/scripts/utils.js')
-rw-r--r--bundle/scripts/utils.js3
1 files changed, 2 insertions, 1 deletions
diff --git a/bundle/scripts/utils.js b/bundle/scripts/utils.js

index bf960532..f4b1ad7f 100644 --- a/bundle/scripts/utils.js +++ b/bundle/scripts/utils.js
@@ -28,13 +28,14 @@ function copyRecursiveSync(src, dest) { } } -function execIn(cmd, workdir) { +function execIn(cmd, workdir, opts) { try { return execSync(cmd, { cwd: workdir, shell: true, env: process.env, encoding: "utf-8", + ...opts }); } catch (error) { return error.stdout;