diff options
author | Corobi <jcri558@gmail.com> | 2014-01-25 23:33:55 +0000 |
---|---|---|
committer | Corobi <jcri558@gmail.com> | 2014-01-25 23:33:55 +0000 |
commit | 17f7da3d975f62c96a11db3516759918dfb2c508 (patch) | |
tree | 22d95c31d35c3e7d73e3ae555d86d8995cd42b98 /lib | |
parent | 8f8db776858be45845d18122761fdc09d5989368 (diff) | |
download | gitlab-ce-17f7da3d975f62c96a11db3516759918dfb2c508.tar.gz |
improve upgrader "latest version" message
Diffstat (limited to 'lib')
-rw-r--r-- | lib/gitlab/upgrader.rb | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/gitlab/upgrader.rb b/lib/gitlab/upgrader.rb index 859923cb563..f46685e4bbe 100644 --- a/lib/gitlab/upgrader.rb +++ b/lib/gitlab/upgrader.rb @@ -8,7 +8,7 @@ module Gitlab puts "Latest available version for GitLab #{current_version.major} is #{latest_version}" if latest_version? - puts "You use latest GitLab version" + puts "You are using the latest GitLab version" else puts "Newer GitLab version is available" answer = if ARGV.first == "-y" |