diff options
-rw-r--r-- | app/views/builds/show.html.haml | 2 | ||||
-rw-r--r-- | lib/runner.rb | 1 |
2 files changed, 2 insertions, 1 deletions
diff --git a/app/views/builds/show.html.haml b/app/views/builds/show.html.haml index d865542..0b0dac4 100644 --- a/app/views/builds/show.html.haml +++ b/app/views/builds/show.html.haml @@ -18,7 +18,7 @@ .clearfix %pre.trace#build-trace = preserve do - = @build.trace + = raw @build.trace %br .right %a.btn.btn-small{href: project_path(@project)} Builds diff --git a/lib/runner.rb b/lib/runner.rb index edc62ce..529cec3 100644 --- a/lib/runner.rb +++ b/lib/runner.rb @@ -61,6 +61,7 @@ class Runner @process = ChildProcess.build(cmd) @tmp_file = Tempfile.new("child-output") @process.io.stdout = @tmp_file + @process.io.stderr = @tmp_file @process.cwd = path @process.environment['BUNDLE_GEMFILE'] = '' @process.start |