Skip to content

Instantly share code, notes, and snippets.

@ShMcK
Last active October 18, 2016 04:36
Show Gist options
  • Save ShMcK/5daa2a2361e0d31cb22f734bbc88fa8d to your computer and use it in GitHub Desktop.
Save ShMcK/5daa2a2361e0d31cb22f734bbc88fa8d to your computer and use it in GitHub Desktop.
Run `yarn` if it exists, otherwise run `npm install`
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