summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorDmitriy Zaporozhets <dmitriy.zaporozhets@gmail.com>2019-05-07 07:26:15 +0000
committerDmitriy Zaporozhets <dmitriy.zaporozhets@gmail.com>2019-05-07 07:26:15 +0000
commit2c34a7c75b43e1cb8f0991f1aca31ce102bddec1 (patch)
tree4115de91c632f217fc10602b37116b995bdf9aa5
parentbd73925b858cbb7229b3d335da0e5d0023f57caf (diff)
downloadgitlab-ce-2c34a7c75b43e1cb8f0991f1aca31ce102bddec1.tar.gz
Fix installation from source
Compiling git has a wrong symbol that leads into invalid command
-rw-r--r--doc/install/installation.md2
1 files changed, 1 insertions, 1 deletions
diff --git a/doc/install/installation.md b/doc/install/installation.md
index 60a8ffacd76..6c1ba7fee95 100644
--- a/doc/install/installation.md
+++ b/doc/install/installation.md
@@ -111,7 +111,7 @@ sudo apt-get install -y libcurl4-openssl-dev libexpat1-dev gettext libz-dev libs
# Download and compile from source
cd /tmp
curl --remote-name --location --progress https://www.kernel.org/pub/software/scm/git/git-2.21.0.tar.gz
-echo '85eca51c7404da75e353eba587f87fea9481ba41e162206a6f70ad8118147bee' git-2.21.0.tar.gz' | shasum -a256 -c - && tar -xzf git-2.21.0.tar.gz
+echo '85eca51c7404da75e353eba587f87fea9481ba41e162206a6f70ad8118147bee git-2.21.0.tar.gz' | shasum -a256 -c - && tar -xzf git-2.21.0.tar.gz
cd git-2.21.0/
./configure
make prefix=/usr/local all