From 06805fff143b9838dd2bab902701867e549783bd Mon Sep 17 00:00:00 2001 From: Sato Hiroyuki Date: Tue, 14 May 2013 19:55:08 +0900 Subject: [PATCH] Config setting should be used in git version check. --- lib/tasks/gitlab/check.rake | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/lib/tasks/gitlab/check.rake b/lib/tasks/gitlab/check.rake index 4a2789b55aa..77f5c02be2e 100644 --- a/lib/tasks/gitlab/check.rake +++ b/lib/tasks/gitlab/check.rake @@ -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