Commit 45efba580173e7e2d8a1a8610ed3e2442723c4ca

Authored by Jacob Vosmaer
1 parent 58b46cbc

Use mkdir -p in 4.2-to-5.0.md update guide

Showing 1 changed file with 2 additions and 2 deletions   Show diff stats
doc/update/4.2-to-5.0.md
... ... @@ -85,7 +85,7 @@ sudo -u git -H bundle exec rake db:migrate RAILS_ENV=production
85 85 sudo -u git -H bundle exec rake gitlab:shell:setup RAILS_ENV=production
86 86 sudo -u git -H bundle exec rake gitlab:shell:build_missing_projects RAILS_ENV=production
87 87  
88   -sudo -u git -H mkdir /home/git/gitlab-satellites
  88 +sudo -u git -H mkdir -p /home/git/gitlab-satellites
89 89 sudo -u git -H bundle exec rake gitlab:satellites:create RAILS_ENV=production
90 90  
91 91 # migrate wiki to git
... ... @@ -101,7 +101,7 @@ sudo chown -R git /home/git/gitlab/log/
101 101 sudo chown -R git /home/git/gitlab/tmp/
102 102 sudo chmod -R u+rwX /home/git/gitlab/log/
103 103 sudo chmod -R u+rwX /home/git/gitlab/tmp/
104   -sudo -u git -H mkdir /home/git/gitlab/tmp/pids/
  104 +sudo -u git -H mkdir -p /home/git/gitlab/tmp/pids/
105 105 sudo chmod -R u+rwX /home/git/gitlab/tmp/pids
106 106  
107 107 ```
... ...