Fix add-to-store --flat to put in correct hash

This commit is contained in:
Matthew Bauer 2020-06-12 15:25:29 -05:00
parent 5b386b05f5
commit e3cb536f19

View file

@ -53,14 +53,10 @@ struct CmdAddToStore : MixDryRun, StoreCommand
auto narHash = hashString(htSHA256, *sink.s);
ValidPathInfo info(store->makeFixedOutputPath(ingestionMethod, narHash, *namePart));
info.narHash = narHash;
info.narSize = sink.s->size();
Hash hash;
switch (ingestionMethod) {
case FileIngestionMethod::Recursive: {
hash = info.narHash;
hash = narHash;
break;
}
case FileIngestionMethod::Flat: {
@ -70,6 +66,10 @@ struct CmdAddToStore : MixDryRun, StoreCommand
break;
}
}
ValidPathInfo info(store->makeFixedOutputPath(ingestionMethod, hash, *namePart));
info.narHash = narHash;
info.narSize = sink.s->size();
info.ca = makeFixedOutputCA(ingestionMethod, hash);
if (!dryRun) {