summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMartin Jagusch <m@martinjagusch.com>2011-02-09 12:04:58 +0100
committerMartin Jagusch <m@martinjagusch.com>2011-02-09 12:04:58 +0100
commite178f0f09658e3c63076d00398aa40a5aa1be045 (patch)
tree8741b01f1d49a4b9d1a7baacd64a6ab2a9261c63
parent64d589f06972d516c6594a4fbc6f5470470ff408 (diff)
downloadbundler-e178f0f09658e3c63076d00398aa40a5aa1be045.tar.gz
Separate commands in deployment task with && instead of ;
-rw-r--r--lib/bundler/deployment.rb2
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/bundler/deployment.rb b/lib/bundler/deployment.rb
index c9a48939e6..727f357e7e 100644
--- a/lib/bundler/deployment.rb
+++ b/lib/bundler/deployment.rb
@@ -45,7 +45,7 @@ module Bundler
args << bundle_flags.to_s
args << "--without #{bundle_without.join(" ")}" unless bundle_without.empty?
- run "cd #{context.fetch(:current_release)}; #{bundle_cmd} install #{args.join(' ')}"
+ run "cd #{context.fetch(:current_release)} && #{bundle_cmd} install #{args.join(' ')}"
end
end
end