Created
August 8, 2014 21:38
-
-
Save dryan/8a111eeac8ce31173148 to your computer and use it in GitHub Desktop.
update dependencies on git merge
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
#!/bin/bash | |
if [ -f 'package.json' ]; | |
then | |
npm install | |
fi | |
if [ -f 'bower.json' ]; | |
then | |
bower install | |
fi | |
if [ -f 'requirements.txt' ]; | |
then | |
pip install -r requirements.txt | |
fi | |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Update based on current/expected project layout