mirror of
https://github.com/NixOS/nix
synced 2025-06-30 07:33:16 +02:00
nix-copy-closure / build-remote.pl: Disable signature checking
This restores the Nix 1.11 behaviour.
This commit is contained in:
parent
e4f0ba55ac
commit
c2d27d30cf
12 changed files with 20 additions and 17 deletions
|
@ -257,7 +257,7 @@ public:
|
|||
|
||||
/* Import a path into the store. */
|
||||
virtual void addToStore(const ValidPathInfo & info, const std::string & nar,
|
||||
bool repair = false) = 0;
|
||||
bool repair = false, bool dontCheckSigs = false) = 0;
|
||||
|
||||
/* Copy the contents of a path to the store and register the
|
||||
validity the resulting path. The resulting path is returned.
|
||||
|
@ -398,8 +398,8 @@ public:
|
|||
the Nix store. Optionally, the contents of the NARs are
|
||||
preloaded into the specified FS accessor to speed up subsequent
|
||||
access. */
|
||||
Paths importPaths(Source & source,
|
||||
std::shared_ptr<FSAccessor> accessor);
|
||||
Paths importPaths(Source & source, std::shared_ptr<FSAccessor> accessor,
|
||||
bool dontCheckSigs = false);
|
||||
|
||||
struct Stats
|
||||
{
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue