<@UHXBNB23Y> We do this (well with Ruby) and we ju...
# general
f
@gifted-engine-92308 We do this (well with Ruby) and we just pipe to shell.
Copy code
def run_command(command)
    puts command
    Open3.popen2e(command) do |stdin, stdout_err, wait_thr|
      while line = stdout_err.gets
        puts line
      end

      exit_status = wait_thr.value
      abort "FAILED: #{command}" unless exit_status.success?
      return exit_status
    end
  end