Skip to content

Commit 2ba0c80

Browse files
committed
fix: use pathdelimiter
Signed-off-by: Ruben Romero Montes <[email protected]>
1 parent 66d16b4 commit 2ba0c80

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/providers/base_javascript.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -342,7 +342,7 @@ export default class Base_javascript {
342342
...opts,
343343
env: {
344344
...opts.env,
345-
PATH: `${versionManagerPaths.join(':')}:${process.env.PATH}`
345+
PATH: `${versionManagerPaths.join(path.delimiter)}${path.delimiter}${process.env.PATH}`
346346
}
347347
};
348348
}

0 commit comments

Comments
 (0)