We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent ecd9947 commit 8604ce5Copy full SHA for 8604ce5
script/travis-before-install
@@ -11,5 +11,7 @@ gem install bundler -v "$DESIRED_BUNDLER_VERSION"
11
12
BUNDLER_VERSIONS=$(gem list bundler | grep ^bundler | cut -d'(' -f2 | cut -d')' -f1 | tr "," " " | grep -v "default")
13
for v in $BUNDLER_VERSIONS; do
14
- if [ "$v" != "$DESIRED_BUNDLER_VERSION" ]; then gem uninstall bundler --force -v "$v"; fi
+ if [ "$v" != "$DESIRED_BUNDLER_VERSION" ]; then
15
+ gem uninstall bundler --force -v "$v" || true
16
+ fi
17
done
0 commit comments