Last active
August 29, 2015 14:20
-
-
Save pusateri/a5283313fdbef9922ce6 to your computer and use it in GitHub Desktop.
Use local version of node instead of trying to download a new version
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
diff --git a/package.json b/package.json | |
index f929d56..a670612 100644 | |
--- a/package.json | |
+++ b/package.json | |
@@ -21,7 +21,7 @@ | |
}, | |
"scripts": { | |
"prepublish": "grunt prepublish", | |
- "install": "node ./script/download-node.js", | |
+ "install": "ln -s /usr/local/bin/node bin/node", | |
"test": "grunt test" | |
}, | |
"dependencies": { |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment