From 96598e7b06dad0de082730cab8992eacc440e535 Mon Sep 17 00:00:00 2001 From: Eelco Dolstra Date: Tue, 11 Nov 2008 15:11:10 +0000 Subject: * Pass the --no-build-output flag to the daemon. --- src/nix-worker/nix-worker.cc | 2 ++ 1 file changed, 2 insertions(+) (limited to 'src/nix-worker/nix-worker.cc') diff --git a/src/nix-worker/nix-worker.cc b/src/nix-worker/nix-worker.cc index 377f2be73aee..ddc58c024b91 100644 --- a/src/nix-worker/nix-worker.cc +++ b/src/nix-worker/nix-worker.cc @@ -426,6 +426,8 @@ static void performOp(unsigned int clientVersion, maxSilentTime = readInt(from); if (GET_PROTOCOL_MINOR(clientVersion) >= 2) useBuildHook = readInt(from) != 0; + if (GET_PROTOCOL_MINOR(clientVersion) >= 4) + buildVerbosity = (Verbosity) readInt(from); startWork(); stopWork(); break; -- cgit 1.4.1