Last active
November 6, 2016 13:21
-
-
Save beetleman/4d70a7ae09773b00d213ddbae4102baf to your computer and use it in GitHub Desktop.
instaling sassc in ~/bin/
This file contains hidden or 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
DIR=/tmp/build_scss | |
mkdir $DIR -p | |
cd $DIR | |
git clone https://github.com/sass/libsass.git | |
export SASS_LIBSASS_PATH=$DIR/libsass | |
git clone https://github.com/sass/sassc.git | |
cd $DIR/sassc | |
make -j4 | |
mkdir ~/bin -p | |
cp bin/sassc ~/bin/ | |
cd | |
rm -rf $DIR |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment