Skip to content

Instantly share code, notes, and snippets.

@xynova
Created May 19, 2015 15:10
Show Gist options
  • Save xynova/7b0637e0568fd14ef8f1 to your computer and use it in GitHub Desktop.
Save xynova/7b0637e0568fd14ef8f1 to your computer and use it in GitHub Desktop.
Example of how to do idempotent apt nodejs package install and then node module
dpkg -s nodejs &> /dev/null || {
sudo apt-get -y nodejs npm
ln -s /usr/bin/nodejs /usr/bin/node
}
which bower || {
sudo npm install -g bower
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment