Commit 5be6cff4 authored by Samuel Giddins's avatar Samuel Giddins Committed by GitHub

Merge pull request #5640 from CocoaPods/seg-fix-ci

[Travis] Account for system ruby going from p645 -> p648
parents 65444a3a 3d53387f
......@@ -20,8 +20,8 @@ before_install:
# There is a bug in travis. When using system ruby, bundler is not
# installed and causes the default install action to fail.
- sudo gem install bundler
# RubyGems 2.0.14 isn't a fun time on 2.0.0p645
- if [ "$(ruby -v | cut -d ' ' -f2)" = "2.0.0p645" ]; then sudo gem update --system; fi
# RubyGems 2.0.14 isn't a fun time on 2.0.0p648
- if [ "$(ruby -v | cut -d ' ' -f2)" = "2.0.0p648" ]; then sudo gem update --system; fi
before_script:
- bundle exec pod repo update --silent
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment