diff options
author | Robert Schilling <rschilling@student.tugraz.at> | 2015-03-14 10:40:05 +0100 |
---|---|---|
committer | Robert Schilling <rschilling@student.tugraz.at> | 2015-03-14 10:40:05 +0100 |
commit | 2b721b28276cc59561b81348780ee70a55ead9f2 (patch) | |
tree | 678be7305174183ca2f0f2ba41612991c4d62c11 | |
parent | 19e0dafbef47ca04f19d38b72b817beeb09e8510 (diff) | |
parent | 6235b027ec19f3ba0e668a6ee6e77d861c4f68bd (diff) | |
download | gitlab-ce-2b721b28276cc59561b81348780ee70a55ead9f2.tar.gz |
Merge pull request #8955 from wasamasa/fix-deploy.sh-typo
Fix typo
-rwxr-xr-x | lib/support/deploy/deploy.sh | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/support/deploy/deploy.sh b/lib/support/deploy/deploy.sh index 4684957233a..adea4c7a747 100755 --- a/lib/support/deploy/deploy.sh +++ b/lib/support/deploy/deploy.sh @@ -4,7 +4,7 @@ # If any command return non-zero status - stop deploy set -e -echo 'Deploy: Stoping sidekiq..' +echo 'Deploy: Stopping sidekiq..' cd /home/git/gitlab/ && sudo -u git -H bundle exec rake sidekiq:stop RAILS_ENV=production echo 'Deploy: Show deploy index page' |