Config setting should be used in git version check.

This commit is contained in:
Sato Hiroyuki 2013-05-14 19:55:08 +09:00
parent bbd125915f
commit 06805fff14
1 changed files with 2 additions and 1 deletions

View File

@ -668,8 +668,9 @@ namespace :gitlab do
def check_git_version
required_version = Gitlab::VersionInfo.new(1, 7, 10)
current_version = Gitlab::VersionInfo.parse(run("git --version"))
current_version = Gitlab::VersionInfo.parse(run("#{Gitlab.config.git.bin_path} --version"))
puts "Your git bin path is \"#{Gitlab.config.git.bin_path}\""
print "Git version >= #{required_version} ? ... "
if required_version <= current_version