mirror of
https://github.com/NixOS/nix
synced 2025-06-27 08:31:16 +02:00
build-remote: Don't require signatures
This restores the old behaviour.
This commit is contained in:
parent
031d70e500
commit
3a5f04f48c
6 changed files with 20 additions and 16 deletions
|
@ -279,7 +279,7 @@ connected:
|
|||
printError("somebody is hogging the upload lock for ‘%s’, continuing...");
|
||||
alarm(0);
|
||||
signal(SIGALRM, old);
|
||||
copyPaths(store, ref<Store>(sshStore), inputs);
|
||||
copyPaths(store, ref<Store>(sshStore), inputs, false, true);
|
||||
uploadLock = -1;
|
||||
|
||||
BasicDerivation drv(readDerivation(drvPath));
|
||||
|
@ -294,7 +294,7 @@ connected:
|
|||
|
||||
if (!missing.empty()) {
|
||||
setenv("NIX_HELD_LOCKS", concatStringsSep(" ", missing).c_str(), 1); /* FIXME: ugly */
|
||||
copyPaths(ref<Store>(sshStore), store, missing);
|
||||
copyPaths(ref<Store>(sshStore), store, missing, false, true);
|
||||
}
|
||||
|
||||
return;
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue