Last active
August 9, 2017 01:06
-
-
Save vmi/022db55f5d0c7cd28a2af4654bf2eca6 to your computer and use it in GitHub Desktop.
bundle 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
#!/bin/bash | |
ruby=$(which ruby) | |
shebang="" | |
if [ "$ruby" != "/usr/bin/ruby" ]; then | |
shebang="--shebang=$ruby" | |
fi | |
set -x | |
bundle install --binstubs=vendor/bin --path=vendor/bundle $shebang |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment