about summary refs log tree commit diff
path: root/src/nix-worker/nix-worker.cc
diff options
context:
space:
mode:
authorEelco Dolstra <e.dolstra@tudelft.nl>2008-11-11T15·11+0000
committerEelco Dolstra <e.dolstra@tudelft.nl>2008-11-11T15·11+0000
commit96598e7b06dad0de082730cab8992eacc440e535 (patch)
tree0873d1fe273519ca3dfba99df7614979d1408648 /src/nix-worker/nix-worker.cc
parent4166b11a53f16365f9becfa4f29f15047fc221af (diff)
* Pass the --no-build-output flag to the daemon.
Diffstat (limited to 'src/nix-worker/nix-worker.cc')
-rw-r--r--src/nix-worker/nix-worker.cc2
1 files changed, 2 insertions, 0 deletions
diff --git a/src/nix-worker/nix-worker.cc b/src/nix-worker/nix-worker.cc
index 377f2be73a..ddc58c024b 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;