Commit 17f7da3d975f62c96a11db3516759918dfb2c508
1 parent
8f8db776
Exists in
spb-stable
and in
3 other branches
improve upgrader "latest version" message
Showing
1 changed file
with
1 additions
and
1 deletions
Show diff stats
lib/gitlab/upgrader.rb
... | ... | @@ -8,7 +8,7 @@ module Gitlab |
8 | 8 | puts "Latest available version for GitLab #{current_version.major} is #{latest_version}" |
9 | 9 | |
10 | 10 | if latest_version? |
11 | - puts "You use latest GitLab version" | |
11 | + puts "You are using the latest GitLab version" | |
12 | 12 | else |
13 | 13 | puts "Newer GitLab version is available" |
14 | 14 | answer = if ARGV.first == "-y" | ... | ... |