diff options
author | Rémy Coutable <remy@rymai.me> | 2019-05-09 09:46:02 +0000 |
---|---|---|
committer | Rémy Coutable <remy@rymai.me> | 2019-05-09 09:46:02 +0000 |
commit | ab37a664aed7bd747ebc30213db3d3fe0e5c76c1 (patch) | |
tree | d7321c1caf923689500c863fdb978ecece33b94b /doc/install | |
parent | 615e57c7c51849493b87a9c2a9c0abdc00404201 (diff) | |
parent | a50951d73a973efddf3079b38a99ded3e885f568 (diff) | |
download | gitlab-ce-ab37a664aed7bd747ebc30213db3d3fe0e5c76c1.tar.gz |
Merge branch 'sh-upgrade-ruby-2.6.3-ce' into 'master'
Upgrade Ruby version to 2.6.3
See merge request gitlab-org/gitlab-ce!28117
Diffstat (limited to 'doc/install')
-rw-r--r-- | doc/install/installation.md | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/doc/install/installation.md b/doc/install/installation.md index c694f0ed691..f16bc04af34 100644 --- a/doc/install/installation.md +++ b/doc/install/installation.md @@ -163,9 +163,9 @@ Download Ruby and compile it: ```sh mkdir /tmp/ruby && cd /tmp/ruby -curl --remote-name --progress https://cache.ruby-lang.org/pub/ruby/2.5/ruby-2.5.3.tar.gz -echo 'f919a9fbcdb7abecd887157b49833663c5c15fda ruby-2.5.3.tar.gz' | shasum -c - && tar xzf ruby-2.5.3.tar.gz -cd ruby-2.5.3 +curl --remote-name --progress https://cache.ruby-lang.org/pub/ruby/2.6/ruby-2.6.3.tar.gz +echo '2347ed6ca5490a104ebd5684d2b9b5eefa6cd33c ruby-2.6.3.tar.gz' | shasum -c - && tar xzf ruby-2.6.3.tar.gz +cd ruby-2.6.3 ./configure --disable-install-rdoc make |