diff options
author | Eelco Dolstra <eelco.dolstra@logicblox.com> | 2014-07-11T22·09+0200 |
---|---|---|
committer | Eelco Dolstra <eelco.dolstra@logicblox.com> | 2014-07-11T22·09+0200 |
commit | a00a98548e994d1ea258e14793c7bcd8ea56cfdf (patch) | |
tree | 8a82b9badb4f2eadcad1461567b0aa3c84dd9b75 /scripts | |
parent | 838138c5c4d21a207f3579c4f743698bd6dbb6b1 (diff) |
build-remote.pl: Fix build log
Diffstat (limited to 'scripts')
-rwxr-xr-x | scripts/build-remote.pl.in | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/scripts/build-remote.pl.in b/scripts/build-remote.pl.in index 687b0e131066..c2f1fecd875a 100755 --- a/scripts/build-remote.pl.in +++ b/scripts/build-remote.pl.in @@ -197,7 +197,7 @@ REQ: while (1) { @sshOpts = ("-i", $machine->{sshKeys}, "-x"); $hostName = $machine->{hostName}; eval { - ($from, $to) = connectToRemoteNix($hostName, \@sshOpts); + ($from, $to) = connectToRemoteNix($hostName, \@sshOpts, "2>&4"); # FIXME: check if builds are inhibited. }; last REQ unless $@; |