Skip to content

Instantly share code, notes, and snippets.

@Globegitter
Last active August 29, 2015 14:15
Show Gist options
  • Star 1 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save Globegitter/9d724b14342763f042ea to your computer and use it in GitHub Desktop.
Save Globegitter/9d724b14342763f042ea to your computer and use it in GitHub Desktop.
Install node-sass on iojs
#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