lib/ember_cli/shell.rb in ember-cli-rails-0.5.8 vs lib/ember_cli/shell.rb in ember-cli-rails-0.6.0

- old
+ new

@@ -49,11 +49,15 @@ attr_accessor :pid attr_reader :ember, :env, :options, :paths def spawn(command) - Kernel.spawn(env, command, chdir: paths.root.to_s, out: paths.log.to_s) || - exit(1) + Kernel.spawn( + env, + command, + chdir: paths.root.to_s, + err: paths.build_error_file.to_s, + ) || exit(1) end def exec(command) Runner.new( options: { chdir: paths.root.to_s },