summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorEvan Wondrasek <evan.wondrasek@gmail.com>2013-03-28 11:03:00 -0500
committerEvan Wondrasek <evan.wondrasek@gmail.com>2013-03-28 11:03:00 -0500
commitf1b369b57ddaa4c308c0f1debcc9548f14f86b24 (patch)
tree4963bd900074721921cb5ea0bbd3d8e094fdaeed
parent21191318ae616a88376977d2438f1f4d7826283e (diff)
downloadgitlab-ce-f1b369b57ddaa4c308c0f1debcc9548f14f86b24.tar.gz
Fixed: gitlab-shell version check error message
-rw-r--r--lib/tasks/gitlab/check.rake2
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/tasks/gitlab/check.rake b/lib/tasks/gitlab/check.rake
index ea97d1811ff..c8d8d531836 100644
--- a/lib/tasks/gitlab/check.rake
+++ b/lib/tasks/gitlab/check.rake
@@ -640,7 +640,7 @@ namespace :gitlab do
if gitlab_shell_version.strip == '1.2.0'
puts 'OK (1.2.0)'.green
else
- puts 'FAIL. Please update gitlab-shell to v1.1.0'.red
+ puts 'FAIL. Please update gitlab-shell to v1.2.0'.red
end
end
end