Skip to content
Snippets Groups Projects
Commit ff346c01 authored by Dmitriy Zaporozhets's avatar Dmitriy Zaporozhets
Browse files

Check git version in gitlab:check

parent a735ce2a
No related branches found
No related tags found
No related merge requests found
Loading
Loading
@@ -24,6 +24,7 @@ namespace :gitlab do
check_init_script_up_to_date
check_satellites_exist
check_redis_version
check_git_version
 
finished_checking "GitLab"
end
Loading
Loading
@@ -663,4 +664,18 @@ namespace :gitlab do
puts "FAIL. Please update gitlab-shell to v#{required_version}".red
end
end
def check_git_version
print "Git version >= 1.7.10 ? ... "
if run_and_match("git --version", /git version 1.7.10.\d/)
puts "yes".green
else
puts "no".red
try_fixing_it(
"Update your git to a version >= 1.7.10"
)
fix_and_rerun
end
end
end
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment