Skip to content

Commit 782391c

Browse files
committed
Make it actually work on Windows :)
1 parent c82f7f8 commit 782391c

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

Diff for: scripts/post-install.js

+1-1
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ const {exec} = require('child_process')
44
switch (process.platform) {
55
case 'win32':
66
// TODO: Move the logic for installing on windows here from the bat file
7-
exec('dist/redis/install.bat')
7+
exec('call dist/redis/install.bat')
88
break
99
case 'darwin':
1010
console.log(

0 commit comments

Comments
 (0)