aboutsummaryrefslogtreecommitdiffstats
path: root/config/deploy.rb
diff options
context:
space:
mode:
authorAlban Peignier2016-04-27 07:30:45 +0200
committerAlban Peignier2016-04-27 07:30:45 +0200
commitb80904b5c4eda55efbb6e344db5894b7ba6e0afc (patch)
tree5ed6f11c7172b45f220dc1b758ab01df51f1294e /config/deploy.rb
parentdbb15e8272f921ceaa14ffbd913d0d1ab8beb7eb (diff)
downloadchouette-core-b80904b5c4eda55efbb6e344db5894b7ba6e0afc.tar.bz2
Fixes cap-fix-permissions command. Refs #802
Diffstat (limited to 'config/deploy.rb')
-rw-r--r--config/deploy.rb2
1 files changed, 1 insertions, 1 deletions
diff --git a/config/deploy.rb b/config/deploy.rb
index 5b26e4ea1..9c468df2c 100644
--- a/config/deploy.rb
+++ b/config/deploy.rb
@@ -55,7 +55,7 @@ namespace :deploy do
desc "Make group writable all deployed files"
task :group_writable do
- run "sudo /usr/local/sbin/cap-fix-permissions /var/www/chouette2"
+ run "sudo /usr/local/sbin/cap-fix-permissions #{deploy_to}"
end
after "deploy:update", "deploy:group_writable"
end