diff options
author | Eelco Dolstra <edolstra@gmail.com> | 2017-05-02T10·01+0200 |
---|---|---|
committer | Eelco Dolstra <edolstra@gmail.com> | 2017-05-02T10·02+0200 |
commit | feefcb3a982d3e3b8e89798d72d8afa996169569 (patch) | |
tree | 6069b08a1d0d3be30761e55bd1651c10113fe67f /src/build-remote/build-remote.cc | |
parent | 3a5f04f48cc39eec5cc454e387aa290e08295aff (diff) |
build-remote: Ugly hackery to get build logs to work
The build hook mechanism expects build log output to go to file descriptor 4, so do that.
Diffstat (limited to 'src/build-remote/build-remote.cc')
-rw-r--r-- | src/build-remote/build-remote.cc | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/build-remote/build-remote.cc b/src/build-remote/build-remote.cc index ba909ec44d69..acf571ff1563 100644 --- a/src/build-remote/build-remote.cc +++ b/src/build-remote/build-remote.cc @@ -241,7 +241,7 @@ int main (int argc, char * * argv) try { - Store::Params storeParams{{"max-connections", "1"}}; + Store::Params storeParams{{"max-connections", "1"}, {"log-fd", "4"}}; if (bestMachine->sshKey != "") storeParams["ssh-key"] = bestMachine->sshKey; |