Skip to content

Commit 9d97804

Browse files
committedFeb 12, 2018
git-node: fix command to work on Windows
1 parent d6ff95f commit 9d97804

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed
 

‎bin/git-node

+1-1
Original file line numberDiff line numberDiff line change
@@ -18,4 +18,4 @@ if (!fs.existsSync(script)) {
1818
process.exit(1);
1919
}
2020

21-
runAsync(script, process.argv.slice(3));
21+
runAsync(process.execPath, [script, ...process.argv.slice(3)]);

0 commit comments

Comments
 (0)
Please sign in to comment.