summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorDavid Rodríguez <deivid.rodriguez@riseup.net>2020-01-03 12:10:26 +0100
committerDavid Rodríguez <deivid.rodriguez@riseup.net>2020-01-07 09:57:06 +0100
commit9edcb1cd2a19e27ceee06a671f18cdf75416e3c9 (patch)
tree25c864939f13a16ca23496f8fccf283ba9ae2c8f
parent613bf9c4fbb462e8e5ddca418ba8f014f6e8e0dc (diff)
downloadbundler-9edcb1cd2a19e27ceee06a671f18cdf75416e3c9.tar.gz
Try fix some specs
Github actions has lowercase drive letters.
-rw-r--r--spec/support/helpers.rb2
1 files changed, 1 insertions, 1 deletions
diff --git a/spec/support/helpers.rb b/spec/support/helpers.rb
index f0803453d2..5d43e6aa8b 100644
--- a/spec/support/helpers.rb
+++ b/spec/support/helpers.rb
@@ -281,7 +281,7 @@ module Spec
gems.each do |g|
if g == :bundler
with_built_bundler {|gem_path| install_gem(gem_path) }
- elsif g.to_s =~ %r{\A(?:[A-Z]:)?/.*\.gem\z}
+ elsif g.to_s =~ %r{\A(?:[a-zA-Z]:)?/.*\.gem\z}
install_gem(g)
else
install_gem("#{gem_repo}/gems/#{g}.gem")