diff options
author | Connor Shea <connor.james.shea@gmail.com> | 2016-08-22 10:26:23 -0600 |
---|---|---|
committer | Connor Shea <connor.james.shea@gmail.com> | 2016-08-22 10:26:23 -0600 |
commit | dc743a6e1f15c9a17411d2a18e89df30871272a7 (patch) | |
tree | a8b77832fd99be8f89dbc83f0ae2c63f68247e99 /doc/update | |
parent | 21ddda75ac739a89565a2334fdfd77ed104d2fbe (diff) | |
download | gitlab-ce-dc743a6e1f15c9a17411d2a18e89df30871272a7.tar.gz |
Appease the linter.
Diffstat (limited to 'doc/update')
-rw-r--r-- | doc/update/8.10-to-8.11.md | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/doc/update/8.10-to-8.11.md b/doc/update/8.10-to-8.11.md index d423d6131b2..1c849ad59a9 100644 --- a/doc/update/8.10-to-8.11.md +++ b/doc/update/8.10-to-8.11.md @@ -30,8 +30,8 @@ Download and compile Ruby: ``bash mkdir /tmp/ruby && cd /tmp/ruby -curl -O --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 -c - && tar xzf ruby-2.3.1.tar.gz +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 ./configure --disable-install-rdoc make |