Commit 21203914 authored by Jacob Vosmaer's avatar Jacob Vosmaer

Remove Gitlab::Popen dependency from lib/gitlab/git

parent 2c05c857
......@@ -62,7 +62,7 @@ module Gitlab
end
def version
Gitlab::VersionInfo.parse(Gitlab::Popen.popen(%W(#{Gitlab.config.git.bin_path} --version)).first)
Gitlab::Git::Version.git_version
end
def check_namespace!(*objects)
......
module Gitlab
module Git
module Version
extend Gitlab::Git::Popen
def self.git_version
Gitlab::VersionInfo.parse(popen(%W(#{Gitlab.config.git.bin_path} --version), nil).first)
end
end
end
end
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment