diff options
author | Eelco Dolstra <edolstra@gmail.com> | 2017-05-01T18·03+0200 |
---|---|---|
committer | Eelco Dolstra <edolstra@gmail.com> | 2017-05-01T18·03+0200 |
commit | 3a5f04f48cc39eec5cc454e387aa290e08295aff (patch) | |
tree | 0686a99ce37988e1455f748a72f78a132c8af45f /src/nix-copy-closure/nix-copy-closure.cc | |
parent | 031d70e5009fcce58afabc9113d5a5de4a16b19a (diff) |
build-remote: Don't require signatures
This restores the old behaviour.
Diffstat (limited to 'src/nix-copy-closure/nix-copy-closure.cc')
-rwxr-xr-x | src/nix-copy-closure/nix-copy-closure.cc | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/nix-copy-closure/nix-copy-closure.cc b/src/nix-copy-closure/nix-copy-closure.cc index ed43bffbc8c8..dc324abcb3ba 100755 --- a/src/nix-copy-closure/nix-copy-closure.cc +++ b/src/nix-copy-closure/nix-copy-closure.cc @@ -58,6 +58,6 @@ int main(int argc, char ** argv) PathSet closure; from->computeFSClosure(storePaths2, closure, false, includeOutputs); - copyPaths(from, to, closure, useSubstitutes); + copyPaths(from, to, closure, useSubstitutes, true); }); } |