diff options
author | Rémy Coutable <remy@rymai.me> | 2017-12-20 10:58:34 +0100 |
---|---|---|
committer | Rémy Coutable <remy@rymai.me> | 2017-12-20 10:58:56 +0100 |
commit | cfe3c238f5d9b7f91e01a549ee365a04158541a8 (patch) | |
tree | d2218a5a9912710ee0b1de403c698725f0af3261 /doc/install | |
parent | febb0b9a8014f5b480ff7baab1d189fce49210a5 (diff) | |
download | gitlab-ce-cfe3c238f5d9b7f91e01a549ee365a04158541a8.tar.gz |
Update installation and upgrade guides to use Ruby 2.3.6docs/update-doc-for-ruby-2-3-6
Signed-off-by: Rémy Coutable <remy@rymai.me>
Diffstat (limited to 'doc/install')
-rw-r--r-- | doc/install/installation.md | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/doc/install/installation.md b/doc/install/installation.md index 56888b05609..67b89d608cc 100644 --- a/doc/install/installation.md +++ b/doc/install/installation.md @@ -133,9 +133,9 @@ Remove the old Ruby 1.8 if present: 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.5.tar.gz - echo '3247e217d6745c27ef23bdc77b6abdb4b57a118f ruby-2.3.5.tar.gz' | shasum -c - && tar xzf ruby-2.3.5.tar.gz - cd ruby-2.3.5 + curl --remote-name --progress https://cache.ruby-lang.org/pub/ruby/2.3/ruby-2.3.6.tar.gz + echo '4e6a0f828819e15d274ae58485585fc8b7caace0 ruby-2.3.6.tar.gz' | shasum -c - && tar xzf ruby-2.3.6.tar.gz + cd ruby-2.3.6 ./configure --disable-install-rdoc make sudo make install @@ -367,7 +367,7 @@ sudo usermod -aG redis git # Enable packfile bitmaps sudo -u git -H git config --global repack.writeBitmaps true - + # Enable push options sudo -u git -H git config --global receive.advertisePushOptions true |