Welcome to mirror list, hosted at ThFree Co, Russian Federation.

gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
path: root/doc
diff options
context:
space:
mode:
authorDmitriy Zaporozhets <dmitriy.zaporozhets@gmail.com>2014-05-27 21:03:34 +0400
committerDmitriy Zaporozhets <dmitriy.zaporozhets@gmail.com>2014-05-27 21:03:34 +0400
commit3682e72619ab4dcccada2aeb14031e519fa3ce66 (patch)
tree22c14033b77c85d0d6432d40ac7ac3943fbc9e40 /doc
parentd25bc257666c9949b6f62414368c09e83df9d6f1 (diff)
parent2341cefd6fa2811a1af41f2068554738d7eebfc4 (diff)
Merge branch 'move_script_to_bin' into 'master'
Move script to bin Fixes #925
Diffstat (limited to 'doc')
-rw-r--r--doc/update/upgrader.md6
1 files changed, 3 insertions, 3 deletions
diff --git a/doc/update/upgrader.md b/doc/update/upgrader.md
index 0a1ad099dac..2875b1a8236 100644
--- a/doc/update/upgrader.md
+++ b/doc/update/upgrader.md
@@ -19,10 +19,10 @@ __GitLab Upgrader is available only for GitLab version 6.4.2 or higher__
### 2. Run gitlab upgrade tool
cd /home/git/gitlab
- sudo -u git -H ruby script/upgrade.rb
+ sudo -u git -H ruby bin/upgrade.rb
# to perform a non-interactive install (no user input required) you can add -y
- # sudo -u git -H ruby script/upgrade.rb -y
+ # sudo -u git -H ruby bin/upgrade.rb -y
### 3. Start application
@@ -57,6 +57,6 @@ You've read through the entire guide, and probably did all the steps manually. H
```bash
cd /home/git/gitlab; sudo -u git -H bundle exec rake gitlab:backup:create RAILS_ENV=production; \
- sudo service gitlab stop; sudo -u git -H ruby script/upgrade.rb -y; sudo service gitlab start; \
+ sudo service gitlab stop; sudo -u git -H ruby bin/upgrade.rb -y; sudo service gitlab start; \
sudo service nginx restart; sudo -u git -H bundle exec rake gitlab:check RAILS_ENV=production
```