summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJames Lopez <james@jameslopez.es>2017-01-09 10:41:07 +0100
committerJames Lopez <james@jameslopez.es>2017-01-09 12:30:16 +0100
commit48cef2340590695891e76fe9397a997c552055e3 (patch)
tree4db3ea7d6ba72684e2859bd8bd0e5e063021827e
parent77b46350b70231e52f57e8e2ec0a584847a7c844 (diff)
downloadgitlab-ce-48cef2340590695891e76fe9397a997c552055e3.tar.gz
use ruby 2.3.3 also in the update guide [ci skip]
-rw-r--r--doc/update/8.15-to-8.16.md6
1 files changed, 3 insertions, 3 deletions
diff --git a/doc/update/8.15-to-8.16.md b/doc/update/8.15-to-8.16.md
index f969d2c63f1..c81adef163e 100644
--- a/doc/update/8.15-to-8.16.md
+++ b/doc/update/8.15-to-8.16.md
@@ -32,9 +32,9 @@ 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.1.tar.gz
-echo 'c39b4001f7acb4e334cb60a0f4df72d434bef711 ruby-2.3.1.tar.gz' | shasum --check - && tar xzf ruby-2.3.1.tar.gz
-cd ruby-2.3.1
+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
+cd ruby-2.3.3
./configure --disable-install-rdoc
make
sudo make install