diff options
author | Bryan McLellan <btm@loftninjas.org> | 2017-11-22 10:23:55 -0500 |
---|---|---|
committer | Bryan McLellan <btm@loftninjas.org> | 2017-11-22 12:00:50 -0500 |
commit | 7430c834fb1a95a724d14da528b75a7e07dfe6ca (patch) | |
tree | 65486ec633cab570a457a0f8592f83989809145c /appveyor.yml | |
parent | 2a77a8bc19eaaacf548b0ae66ee01a693130f5cb (diff) | |
download | chef-7430c834fb1a95a724d14da528b75a7e07dfe6ca.tar.gz |
Don't try to uninstall bundler on appveyor
As of Rubygems 2.7 bundler is a default gem and cannot be uninstalled.
Appveyor recently (11/19) changed and now has bundler as a default gem.
We'll stop stop trying to force a bundler version and track what Ruby gives us.
Signed-off-by: Bryan McLellan <btm@loftninjas.org>
Diffstat (limited to 'appveyor.yml')
-rw-r--r-- | appveyor.yml | 3 |
1 files changed, 0 insertions, 3 deletions
diff --git a/appveyor.yml b/appveyor.yml index de947203c1..959c8e616c 100644 --- a/appveyor.yml +++ b/appveyor.yml @@ -28,10 +28,7 @@ install: - echo %OMNIBUS_BUNDLER% - ruby --version - gem --version - - bundler --version - - gem uninstall bundler -a -x - gem update --system %OMNIBUS_RUBYGEMS% || gem update --system %OMNIBUS_RUBYGEMS% || gem update --system %OMNIBUS_RUBYGEMS% - - gem install bundler -v %OMNIBUS_BUNDLER% --quiet --no-ri --no-rdoc || gem install bundler -v %OMNIBUS_BUNDLER% --quiet --no-ri --no-rdoc || gem install bundler -v %OMNIBUS_BUNDLER% --quiet --no-ri --no-rdoc - gem --version - bundler --version - SET BUNDLE_WITHOUT=server:docgen:maintenance:pry:travis:integration:ci |