Last active
August 29, 2015 14:15
-
-
Save Globegitter/9d724b14342763f042ea to your computer and use it in GitHub Desktop.
Install node-sass on iojs
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
#This sets the environment variable for Fish shell (http://fishshell.com/). Change for bash/zsh. | |
set -g -x SKIP_SASS_BINARY_DOWNLOAD_FOR_CI true | |
cd node_modules | |
#If you are using ember-cli-sass first change your package.json to | |
#"ember-cli-sass": "git+https://github.com/aexmachina/ember-cli-sass#sources-content" | |
#and cd node_modules/ember-cli-sass/node_modules/broccoli-sass/node_modules/ | |
rm -rf node-sass | |
git clone --recursive https://github.com/sass/node-sass.git | |
cd node-sass | |
npm install | |
#that should now have everything working again! |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment