Skip to content
This repository was archived by the owner on Sep 2, 2021. It is now read-only.

Commit 37ffe30

Browse files
committed
Merge pull request #310 from adobe/jasonsanjose/fix-gyp-mv
fix windows npm install error by using bash shell instead of cmd
2 parents 486516a + 771e643 commit 37ffe30

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

package.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -24,8 +24,8 @@
2424
"semver": "2.0.11"
2525
},
2626
"scripts": {
27-
"preinstall": "echo 'Workaround https://github.com/TooTallNate/node-gyp/issues/216'; mv appshell.gyp .appshell.gyp",
27+
"preinstall": "bash -c 'mv appshell.gyp .appshell.gyp'",
2828
"install": "",
29-
"postinstall": "mv .appshell.gyp appshell.gyp; grunt"
29+
"postinstall": "bash -c 'mv .appshell.gyp appshell.gyp; grunt'"
3030
}
3131
}

0 commit comments

Comments
 (0)