Skip to content

Instantly share code, notes, and snippets.

@tvdeyen
Created February 2, 2017 06:27
Show Gist options
  • Save tvdeyen/c0ac49c5dbf0e09e305f180d62b067d0 to your computer and use it in GitHub Desktop.
Save tvdeyen/c0ac49c5dbf0e09e305f180d62b067d0 to your computer and use it in GitHub Desktop.
Downgrade bundler on Travis CI
before_install:
- rvm use @global
- gem uninstall bundler -x
- gem install bundler --version=1.13.7
- bundler --version
@grosser
Copy link

grosser commented Jan 18, 2019

FYI needed to use this instead - gem uninstall bundler -x || gem uninstall bundler -a || true since uninstalling failed on some ruby versions

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment