From d27f1d95d56662935bfd5b00b0a63a4c02369547 Mon Sep 17 00:00:00 2001 From: Parker Moore Date: Mon, 18 Jan 2016 15:34:50 -0800 Subject: [PATCH] features: #run_command should prefix command with $ --- features/support/helpers.rb | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/features/support/helpers.rb b/features/support/helpers.rb index d65695ce..b8334cfd 100644 --- a/features/support/helpers.rb +++ b/features/support/helpers.rb @@ -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}"