Commit 71c8801eefd64d4b2e2f37205b1a5415e3c5bf93
1 parent
ea8cd13f
Exists in
master
and in
4 other branches
Fix checking for the recommended Gitolite version
Fixes #2475
Showing
1 changed file
with
1 additions
and
1 deletions
Show diff stats
lib/tasks/gitlab/check.rake
... | ... | @@ -544,7 +544,7 @@ namespace :gitlab do |
544 | 544 | |
545 | 545 | def check_gitolite_is_up_to_date |
546 | 546 | print "Using recommended version ... " |
547 | - if gitolite_version.try(:start_with?, "v3.04") | |
547 | + if gitolite_version.try(:start_with?, "v3.2") | |
548 | 548 | puts "yes".green |
549 | 549 | else |
550 | 550 | puts "no".red | ... | ... |