summaryrefslogtreecommitdiff
path: root/doc/update/5.3-to-5.4.md
diff options
context:
space:
mode:
authorBen Bodenmiller <bbodenmiller@hotmail.com>2014-08-11 22:01:37 -0700
committerBen Bodenmiller <bbodenmiller@hotmail.com>2014-08-11 22:01:37 -0700
commitaabb4093b7e69cd41e50f674a971b4a113345748 (patch)
tree125068858b5660d3bf79daa2ff96b36acf32eb85 /doc/update/5.3-to-5.4.md
parent2600d08f65a8169c6f9414aca6517c828641ec23 (diff)
downloadgitlab-ce-aabb4093b7e69cd41e50f674a971b4a113345748.tar.gz
follow curl redirects
Update `curl` commands to follow redirects (see http://curl.haxx.se/docs/manpage.html#-L). Current `curl` commands will return unexpected results if the requested content has been moved and is returning information about where it has been moved to. Including the `-L` option tells `curl` to follow the redirect so the file can be correctly acquired.
Diffstat (limited to 'doc/update/5.3-to-5.4.md')
-rw-r--r--doc/update/5.3-to-5.4.md2
1 files changed, 1 insertions, 1 deletions
diff --git a/doc/update/5.3-to-5.4.md b/doc/update/5.3-to-5.4.md
index e1749f133b3..b130f4c65bb 100644
--- a/doc/update/5.3-to-5.4.md
+++ b/doc/update/5.3-to-5.4.md
@@ -54,7 +54,7 @@ sudo -u git -H bundle exec rake assets:precompile RAILS_ENV=production
```bash
sudo rm /etc/init.d/gitlab
-sudo curl --output /etc/init.d/gitlab https://raw.github.com/gitlabhq/gitlabhq/5-4-stable/lib/support/init.d/gitlab
+sudo curl -L --output /etc/init.d/gitlab https://raw.github.com/gitlabhq/gitlabhq/5-4-stable/lib/support/init.d/gitlab
sudo chmod +x /etc/init.d/gitlab
```