diff options
author | James Lopez <james@gitlab.com> | 2017-01-24 12:41:29 +0000 |
---|---|---|
committer | James Lopez <james@gitlab.com> | 2017-01-24 12:41:29 +0000 |
commit | fe0dbf61c1cefa02bd1db0ec087aef030f150f2d (patch) | |
tree | 34318773bdd43d7cc3299b046a0c73829e78b42c /doc | |
parent | 0fd7919e77b61616e6e8a79fa415535760de31fc (diff) | |
parent | 5df36fc09e56914e698d89c242fd5cdb57b717cf (diff) | |
download | gitlab-ce-fe0dbf61c1cefa02bd1db0ec087aef030f150f2d.tar.gz |
Merge branch 'patch-12' into 'master'
Fix hash of ruby in update documentation
See merge request !8735
Diffstat (limited to 'doc')
-rw-r--r-- | doc/install/installation.md | 2 | ||||
-rw-r--r-- | doc/update/8.15-to-8.16.md | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/doc/install/installation.md b/doc/install/installation.md index 9cebed34b7e..3e7674e13ab 100644 --- a/doc/install/installation.md +++ b/doc/install/installation.md @@ -124,7 +124,7 @@ Download Ruby and compile it: mkdir /tmp/ruby && cd /tmp/ruby curl --remote-name --progress https://cache.ruby-lang.org/pub/ruby/2.3/ruby-2.3.3.tar.gz - echo 'a8db9ce7f9110320f33b8325200e3ecfbd2b534b ruby-2.3.3.tar.gz' | shasum -c - && tar xzf ruby-2.3.3.tar.gz + echo '1014ee699071aa2ddd501907d18cbe15399c997d ruby-2.3.3.tar.gz' | shasum -c - && tar xzf ruby-2.3.3.tar.gz cd ruby-2.3.3 ./configure --disable-install-rdoc make diff --git a/doc/update/8.15-to-8.16.md b/doc/update/8.15-to-8.16.md index 3d68fe201a7..63f3c3fdda9 100644 --- a/doc/update/8.15-to-8.16.md +++ b/doc/update/8.15-to-8.16.md @@ -36,7 +36,7 @@ Download and compile Ruby: ```bash mkdir /tmp/ruby && cd /tmp/ruby curl --remote-name --progress https://cache.ruby-lang.org/pub/ruby/2.3/ruby-2.3.3.tar.gz -echo 'a8db9ce7f9110320f33b8325200e3ecfbd2b534b ruby-2.3.3.tar.gz' | shasum -c - && tar xzf ruby-2.3.3.tar.gz +echo '1014ee699071aa2ddd501907d18cbe15399c997d ruby-2.3.3.tar.gz' | shasum -c - && tar xzf ruby-2.3.3.tar.gz cd ruby-2.3.3 ./configure --disable-install-rdoc make |