1
0
Fork 0
mirror of https://github.com/capistrano/capistrano synced 2023-03-27 23:21:18 -04:00

Merge pull request #61 from Florent2/patch-2

Add -p option on mkdir command
This commit is contained in:
Lee Hambley 2013-12-28 01:21:11 -08:00
commit 263229169c

View file

@ -338,7 +338,7 @@ access that you may or may not need depending how well your servers are setup:
# Capistrano will use /var/www/....... where ... is the value set in
# :application, you can override this by setting the ':deploy_to' variable
root@remote $ deploy_to=/var/www/rails3-bootstrap-devise-cancan-demo
root@remote $ mkdir ${deploy_to}
root@remote $ mkdir -p ${deploy_to}
root@remote $ chown deploy:deploy ${deploy_to}
root@remote $ umask 0002
root@remote $ chmod g+s ${deploy_to}