Skip to content

Commit 85ed19d

Browse files
committed
fix: throwing exeception on run
Fixes #1276 Due to const being used.
1 parent 7fb365d commit 85ed19d

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

lib/monitor/run.js

+2-2
Original file line numberDiff line numberDiff line change
@@ -40,8 +40,8 @@ function run(options) {
4040
stdio = [process.stdin, process.stdout, process.stderr];
4141
}
4242

43-
const sh = 'sh';
44-
const shFlag = '-c';
43+
var sh = 'sh';
44+
var shFlag = '-c';
4545

4646
const binPath = process.cwd() + '/node_modules/.bin';
4747

0 commit comments

Comments
 (0)