Skip to content

Commit e26aaa9

Browse files
stijnherremanremy
authored andcommitted
fix: support windows by using path.delimiter
1 parent 9d1afd7 commit e26aaa9

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

lib/monitor/run.js

+1-1
Original file line numberDiff line numberDiff line change
@@ -64,7 +64,7 @@ function run(options) {
6464

6565
const spawnOptions = {
6666
env: Object.assign({}, process.env, options.execOptions.env, {
67-
PATH: binPath + ':' + process.env.PATH,
67+
PATH: binPath + path.delimiter + process.env.PATH,
6868
}),
6969
stdio: stdio,
7070
};

0 commit comments

Comments
 (0)