summaryrefslogtreecommitdiff
path: root/spec/support/builders.rb
diff options
context:
space:
mode:
authorDavid Rodríguez <deivid.rodriguez@riseup.net>2019-05-06 18:06:21 +0200
committerDavid Rodríguez <deivid.rodriguez@riseup.net>2019-06-11 12:36:19 +0200
commit5946d62ad03c57271ccb037680382b1db9fc2e65 (patch)
tree31be4479c7d942243440b378c054ef6d4308e398 /spec/support/builders.rb
parente6fd423bbdf6fc2aa1032a5e35df7b4079c45ddd (diff)
downloadbundler-5946d62ad03c57271ccb037680382b1db9fc2e65.tar.gz
Normalize file:// handling in specs
Diffstat (limited to 'spec/support/builders.rb')
-rw-r--r--spec/support/builders.rb2
1 files changed, 1 insertions, 1 deletions
diff --git a/spec/support/builders.rb b/spec/support/builders.rb
index 33a81f6f65..70125ce52a 100644
--- a/spec/support/builders.rb
+++ b/spec/support/builders.rb
@@ -689,7 +689,7 @@ module Spec
elsif tag = options[:tag]
`git tag #{Shellwords.shellescape(tag)}`
elsif options[:remote]
- silently("git remote add origin file://#{options[:remote]}")
+ silently("git remote add origin #{options[:remote]}")
elsif options[:push]
silently("git push origin #{options[:push]}")
end