summaryrefslogtreecommitdiff
path: root/lib/bundler/source.rb
diff options
context:
space:
mode:
Diffstat (limited to 'lib/bundler/source.rb')
-rw-r--r--lib/bundler/source.rb2
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/bundler/source.rb b/lib/bundler/source.rb
index baf6065dd3..6545e7eb6f 100644
--- a/lib/bundler/source.rb
+++ b/lib/bundler/source.rb
@@ -325,7 +325,7 @@ module Bundler
def checkout
unless File.exist?("#{path}/.git")
- %x(git clone --no-checkout file://#{cache_path} #{path})
+ %x(git clone --no-checkout "file://#{cache_path}" #{path})
end
Dir.chdir(path) do
git "fetch --quiet"