Last active
December 18, 2015 13:09
-
-
Save jkeyes/5788205 to your computer and use it in GitHub Desktop.
Install lessc on wercker
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
box: wercker/python | |
build: | |
steps: | |
- script: | |
name: "install lessc with sudo" | |
code: |- | |
curl https://npmjs.org/install.sh | sudo bash | |
sudo npm install less -g | |
- script: | |
name: "install lessc locally" | |
curl https://npmjs.org/install.sh | npm_config_prefix=~/local sh | |
~/local/bin/npm install less |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment