From 4e05acc471fa658ba019a477e62c27c7f8632e84 Mon Sep 17 00:00:00 2001 From: Eelco Dolstra Date: Tue, 20 Oct 2020 12:11:46 +0200 Subject: [PATCH] Fix localhost builds --- src/hydra-queue-runner/build-remote.cc | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/hydra-queue-runner/build-remote.cc b/src/hydra-queue-runner/build-remote.cc index 7b3e64d8..c602b883 100644 --- a/src/hydra-queue-runner/build-remote.cc +++ b/src/hydra-queue-runner/build-remote.cc @@ -315,7 +315,7 @@ void State::buildRemote(ref destStore, if (sendDerivation) { to << cmdBuildPaths; - worker_proto::write(*localStore, to, {step->drvPath}); + worker_proto::write(*localStore, to, StorePathSet{step->drvPath}); } else { to << cmdBuildDerivation << localStore->printStorePath(step->drvPath); writeDerivation(to, *localStore, basicDrv);