features: #run_command should prefix command with $

This commit is contained in:
Parker Moore 2016-01-18 15:34:50 -08:00
parent e75d703806
commit d27f1d95d5
1 changed files with 1 additions and 1 deletions

View File

@ -102,7 +102,7 @@ def run_in_shell(*args)
File.write(Paths.status_file, p.value.exitstatus)
File.open(Paths.output_file, "wb") do |f|
f.puts args.join(" ")
f.puts "$ " << args.join(" ")
f.puts out
f.puts err
f.puts "EXIT STATUS: #{p.value.exitstatus}"