summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorSantiago Pastorino <santiago@wyeworks.com>2010-08-11 11:06:42 -0300
committerSantiago Pastorino <santiago@wyeworks.com>2010-08-11 11:06:42 -0300
commit27a9bdfbf459ea211bd6fde0612e4dcc06951483 (patch)
treea0c31b4d26f2251aa7f4ef3f9cb5b1860b462b43
parent82867229abe9a85a0ca729fed8ec6a6133ccb6bc (diff)
downloadbundler-27a9bdfbf459ea211bd6fde0612e4dcc06951483.tar.gz
Fixed escaping issue in capistrano. thanks: Lawrence Curtis
-rw-r--r--lib/bundler/capistrano.rb2
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/bundler/capistrano.rb b/lib/bundler/capistrano.rb
index f04a55a70d..054100ae9f 100644
--- a/lib/bundler/capistrano.rb
+++ b/lib/bundler/capistrano.rb
@@ -9,7 +9,7 @@ Capistrano::Configuration.instance(:must_exist).load do
namespace :bundle do
task :install do
- run "bundle install --gemfile #{release_path}/Gemfile --path #{fetch(:bundle_dir, '#{shared_path}/bundle')} --deployment --without development test"
+ run "bundle install --gemfile #{release_path}/Gemfile --path #{fetch(:bundle_dir, "#{shared_path}/bundle")} --deployment --without development test"
end
end
end