Commit 44158c6f63679eb09e70cb3b56d13ef231b24a78
1 parent
55f7162e
Exists in
master
and in
17 other branches
Fix typo in postinst script
Showing
1 changed file
with
1 additions
and
1 deletions
Show diff stats
package-scripts/gitlab/postinst
... | ... | @@ -14,7 +14,7 @@ function error_exit |
14 | 14 | |
15 | 15 | for command in gitlab-ctl gitlab-rake |
16 | 16 | do |
17 | - ln -sf /opt/gitlab/bin/$command} /usr/bin || error_exit "Could not symlink $command in /usr/bin" | |
17 | + ln -sf /opt/gitlab/bin/$command /usr/bin || error_exit "Could not symlink $command in /usr/bin" | |
18 | 18 | done |
19 | 19 | |
20 | 20 | echo "Thank you for installing GitLab!" | ... | ... |