Last active
October 18, 2016 04:36
-
-
Save ShMcK/5daa2a2361e0d31cb22f734bbc88fa8d to your computer and use it in GitHub Desktop.
Run `yarn` if it exists, otherwise run `npm install`
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
if which yarn > /dev/null; then | |
yarn | |
else | |
npm install | |
fi |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment