diff options
author | Henare Degan <henare.degan@gmail.com> | 2012-09-11 13:36:09 +1000 |
---|---|---|
committer | Henare Degan <henare.degan@gmail.com> | 2012-09-11 13:36:09 +1000 |
commit | 7c0be999690a00c1063decc752b8aa3eac3e86f2 (patch) | |
tree | 0d8236da427a4c2b10422e81fa5dce28ae35019d | |
parent | da3f456201a50aa8789b73f0f5ac8805ef86db84 (diff) |
Allow the deploy path to be customised
-rw-r--r-- | config/deploy.rb | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/config/deploy.rb b/config/deploy.rb index ebc4f07e5..6f88adf51 100644 --- a/config/deploy.rb +++ b/config/deploy.rb @@ -8,6 +8,7 @@ configuration = YAML.load_file('config/deploy.yml')[stage] set :application, 'alaveteli' set :scm, :git set :repository, configuration['repository'] +set :deploy_to, configuration['path'] set :user, configuration['user'] set :use_sudo, false |