gitlab-org--gitlab-foss/lib/gitlab/git/popen.rb

33 lines
727 B
Ruby
Raw Normal View History

# Gitaly note: JV: no RPC's here.
2017-01-04 13:43:06 -05:00
require 'open3'
module Gitlab
module Git
module Popen
def popen(cmd, path, vars = {})
2017-01-04 13:43:06 -05:00
unless cmd.is_a?(Array)
raise "System commands must be given as an array of strings"
end
path ||= Dir.pwd
vars['PWD'] = path
2017-01-04 13:43:06 -05:00
options = { chdir: path }
@cmd_output = ""
@cmd_status = 0
Open3.popen3(vars, *cmd, options) do |stdin, stdout, stderr, wait_thr|
yield(stdin) if block_given?
stdin.close
2017-01-04 13:43:06 -05:00
@cmd_output << stdout.read
@cmd_output << stderr.read
@cmd_status = wait_thr.value.exitstatus
end
[@cmd_output, @cmd_status]
end
end
end
end