diff options
author | Eelco Dolstra <eelco.dolstra@logicblox.com> | 2016-05-31T09·18+0200 |
---|---|---|
committer | Eelco Dolstra <eelco.dolstra@logicblox.com> | 2016-05-31T09·48+0200 |
commit | c2d27d30cfe000c4adff91e6cbde63c2a5b92b43 (patch) | |
tree | 4b08416fcedffc1f8692ac3bcf7992bdc0fea5d2 /src/libstore/remote-store.cc | |
parent | e4f0ba55ac749f34ee82eef400051c0f0a4f5ec4 (diff) |
nix-copy-closure / build-remote.pl: Disable signature checking
This restores the Nix 1.11 behaviour.
Diffstat (limited to 'src/libstore/remote-store.cc')
-rw-r--r-- | src/libstore/remote-store.cc | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/src/libstore/remote-store.cc b/src/libstore/remote-store.cc index 9a00a6ed9910..48653595f0e8 100644 --- a/src/libstore/remote-store.cc +++ b/src/libstore/remote-store.cc @@ -326,7 +326,8 @@ Path RemoteStore::queryPathFromHashPart(const string & hashPart) } -void RemoteStore::addToStore(const ValidPathInfo & info, const std::string & nar, bool repair) +void RemoteStore::addToStore(const ValidPathInfo & info, const std::string & nar, + bool repair, bool dontCheckSigs) { throw Error("RemoteStore::addToStore() not implemented"); } |