diff options
author | Dmitriy Zaporozhets <dmitriy.zaporozhets@gmail.com> | 2012-11-02 13:15:03 +0200 |
---|---|---|
committer | Dmitriy Zaporozhets <dmitriy.zaporozhets@gmail.com> | 2012-11-02 13:15:03 +0200 |
commit | 1ee239c5f91da9e744b97505a2325aeea1098730 (patch) | |
tree | 4546744282d416a5d22005d92e72a7b046baa828 /lib | |
parent | 54bedd646602b5af0faad83540719a0a0adb5cd3 (diff) | |
download | gitlab-ci-1ee239c5f91da9e744b97505a2325aeea1098730.tar.gz |
Add stderr
Diffstat (limited to 'lib')
-rw-r--r-- | lib/runner.rb | 1 |
1 files changed, 1 insertions, 0 deletions
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 |