1
0
Fork 0
mirror of https://github.com/NixOS/nix synced 2025-07-07 18:31:49 +02:00

libstore: don't forward --show-trace

(cherry picked from commit e63c9e73e3)
This commit is contained in:
zimbatm 2019-09-22 10:57:20 +00:00 committed by Eelco Dolstra
parent f3ce4453a6
commit f4106e76ff
No known key found for this signature in database
GPG key ID: 8170B4726D7198DE

View file

@ -198,6 +198,7 @@ void RemoteStore::setOptions(Connection & conn)
overrides.erase(settings.maxSilentTime.name);
overrides.erase(settings.buildCores.name);
overrides.erase(settings.useSubstitutes.name);
overrides.erase(settings.showTrace.name);
conn.to << overrides.size();
for (auto & i : overrides)
conn.to << i.first << i.second.value;