diff options
author | John Ericson <John.Ericson@Obsidian.Systems> | 2020-06-24 22:46:27 +0000 |
---|---|---|
committer | John Ericson <John.Ericson@Obsidian.Systems> | 2020-06-25 17:53:31 +0000 |
commit | 71e4c9c505f2418084643c1a68da5c89b82038dd (patch) | |
tree | 875c3a5489b9a45ad662da27db9eefd3cf09969b /src/nix/sigs.cc | |
parent | 1722ae6ecee54e14164d215ba3d767ea6c352fc3 (diff) |
WIP: store separate `hasValidPath` bool
Diffstat (limited to 'src/nix/sigs.cc')
-rw-r--r-- | src/nix/sigs.cc | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/src/nix/sigs.cc b/src/nix/sigs.cc index 6c9b9a792..a40975982 100644 --- a/src/nix/sigs.cc +++ b/src/nix/sigs.cc @@ -65,7 +65,8 @@ struct CmdCopySigs : StorePathsCommand binary. */ if (info->narHash != info2->narHash || info->narSize != info2->narSize || - info->references != info2->references) + info->references != info2->references || + info->hasSelfReference != info2->hasSelfReference) continue; for (auto & sig : info2->sigs) |