Commit b58326afc6f77ccc43d4f250d7a0b8e1987ae068
Exists in
master
and in
4 other branches
Merge pull request #1069 from drt24/patch-1
Should append to .profile rather than overwriting it as it might have ex...
Showing
1 changed file
with
1 additions
and
1 deletions
Show diff stats
doc/installation.md
... | ... | @@ -107,7 +107,7 @@ Get gitolite source code: |
107 | 107 | |
108 | 108 | Setup: |
109 | 109 | |
110 | - sudo -u git sh -c 'echo -e "PATH=\$PATH:/home/git/bin\nexport PATH" > /home/git/.profile' | |
110 | + sudo -u git sh -c 'echo -e "PATH=\$PATH:/home/git/bin\nexport PATH" >> /home/git/.profile' | |
111 | 111 | sudo -u git -H sh -c "PATH=/home/git/bin:$PATH; /home/git/gitolite/src/gl-system-install" |
112 | 112 | sudo cp /home/gitlab/.ssh/id_rsa.pub /home/git/gitlab.pub |
113 | 113 | sudo chmod 777 /home/git/gitlab.pub | ... | ... |