Skip to content

Commit

Permalink
Ensure compatible version of Bundler is installed
Browse files Browse the repository at this point in the history
This may install an older Bundler than necessary on Ruby 2.3-2.5.
  • Loading branch information
mvz committed Jan 7, 2019
1 parent 34b7633 commit db7d4be
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion script/bootstrap
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@ which 'zsh' >/dev/null 2>error.log || ( echo -e "$error_msg\n\nCould not find \`
echo OK

echo -e "$info_msg rubygem \"bundler\" "
which bundle > /dev/null || gem install bundler
which bundle > /dev/null || gem install bundler --version '~> 1.17.3'

echo -e "$info_msg \"bundle install\" "
bundle install $*

0 comments on commit db7d4be

Please sign in to comment.