From fda1218a5f125578208dae4f5256933f18c00f55 Mon Sep 17 00:00:00 2001 From: gregoirenovel Date: Wed, 24 Oct 2018 14:03:57 +0200 Subject: [PATCH] Keep the same order between shared_dirs and setup --- config/deploy.rb | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/config/deploy.rb b/config/deploy.rb index 363ab7ee4..a64cb2ef3 100644 --- a/config/deploy.rb +++ b/config/deploy.rb @@ -39,14 +39,14 @@ task :setup do command %[mkdir -p "#{deploy_to}/shared/log"] command %[chmod g+rx,u+rwx "#{deploy_to}/shared/log"] + command %[mkdir -p "#{deploy_to}/shared/sockets"] + command %[chmod g+rx,u+rwx "#{deploy_to}/shared/sockets"] + command %[mkdir -p "#{deploy_to}/shared/tmp/pids"] command %[chmod g+rx,u+rwx "#{deploy_to}/shared/tmp/pids"] command %[mkdir -p "#{deploy_to}/shared/tmp/cache"] command %[chmod g+rx,u+rwx "#{deploy_to}/shared/tmp/cache"] - - command %[mkdir -p "#{deploy_to}/shared/sockets"] - command %[chmod g+rx,u+rwx "#{deploy_to}/shared/sockets"] end namespace :yarn do