Commit bf8b8741 authored by Valery Sizov's avatar Valery Sizov

fix system silent call

parent d1b489e0
......@@ -6,7 +6,7 @@ module Gitlab
# Returns true for a valid reference name, false otherwise
def validate(ref_name)
Gitlab::Utils.system_silent(
%W(git check-ref-format refs/#{ref_name})) == 0
%W(git check-ref-format refs/#{ref_name}))
end
end
end
......@@ -5,10 +5,9 @@ module Gitlab
# Run system command without outputting to stdout.
#
# @param cmd [Array<String>]
# @return [Integer] exit status
# @return [Boolean]
def system_silent(cmd)
IO.popen(cmd).close
$?.exitstatus
Popen::popen(cmd).last.zero?
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