aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorAndre Arko <andre@arko.net>2013-01-23 08:47:52 -0800
committerAndre Arko <andre@arko.net>2013-01-23 08:48:01 -0800
commit88d5bf140ed8f620d20930f2cff20057e7ed251b (patch)
tree646815a1b71176a0ec11ade10f45b19d2b32ef25
parentf7bdee6439dd359f2385bbac584cabf7f60d231e (diff)
downloadbundler-88d5bf140ed8f620d20930f2cff20057e7ed251b.tar.gz
clarify that app path isn't from bundler/cap
[ci skip]
-rw-r--r--lib/bundler/deployment.rb4
1 files changed, 2 insertions, 2 deletions
diff --git a/lib/bundler/deployment.rb b/lib/bundler/deployment.rb
index e0a63a5d..1a825141 100644
--- a/lib/bundler/deployment.rb
+++ b/lib/bundler/deployment.rb
@@ -21,7 +21,8 @@ module Bundler
test group will not be installed. The install command is executed \
with the --deployment and --quiet flags. If the bundle cmd cannot \
be found then you can override the bundle_cmd variable to specifiy \
- which one it should use.
+ which one it should use. The base path to the app is fetched from \
+ the :latest_release variable. Set it for custom deploy layouts.
You can override any of these defaults by setting the variables shown below.
@@ -34,7 +35,6 @@ module Bundler
set :bundle_without, [:development, :test]
set :bundle_cmd, "bundle" # e.g. "/opt/ruby/bin/bundle"
set :bundle_roles, #{role_default} # e.g. [:app, :batch]
- set :current_release, #{current_release} # e.g. "/releases/123456"
DESC
send task_method, :install, opts do
bundle_cmd = context.fetch(:bundle_cmd, "bundle")