1
1
Fork 0
mirror of https://github.com/NixOS/nix.git synced 2025-11-16 23:42:43 +01:00

Remove --print-build-trace

This was added to support Hydra, but Hydra no longer uses it.
This commit is contained in:
Eelco Dolstra 2016-04-25 16:35:28 +02:00
parent 9eba2c3945
commit 6e1b099279
7 changed files with 4 additions and 72 deletions

View file

@ -122,7 +122,7 @@ void RemoteStore::setOptions(ref<Connection> conn)
if (GET_PROTOCOL_MINOR(conn->daemonVersion) >= 4)
conn->to << settings.buildVerbosity
<< 0 // obsolete log type
<< settings.printBuildTrace;
<< 0 /* obsolete print build trace */;
if (GET_PROTOCOL_MINOR(conn->daemonVersion) >= 6)
conn->to << settings.buildCores;
if (GET_PROTOCOL_MINOR(conn->daemonVersion) >= 10)