diff options
author | Eelco Dolstra <edolstra@gmail.com> | 2022-03-22 23:19:21 +0100 |
---|---|---|
committer | Eelco Dolstra <edolstra@gmail.com> | 2022-03-24 21:33:33 +0100 |
commit | 28186b7044dca513e6e07c3e66b7de2143543ae4 (patch) | |
tree | ca0c85881f52ac76ea0b29fd9f80349e39ba255a /src/libstore/make-content-addressed.cc | |
parent | 4120930ac19ab7296818fdc1d1389e7799168867 (diff) |
Add a test for fetchClosure and 'nix store make-content-addressed'
Diffstat (limited to 'src/libstore/make-content-addressed.cc')
-rw-r--r-- | src/libstore/make-content-addressed.cc | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/libstore/make-content-addressed.cc b/src/libstore/make-content-addressed.cc index fc11fcb27..64d172918 100644 --- a/src/libstore/make-content-addressed.cc +++ b/src/libstore/make-content-addressed.cc @@ -52,7 +52,7 @@ std::map<StorePath, StorePath> makeContentAddressed( auto dstPath = dstStore.makeFixedOutputPath( FileIngestionMethod::Recursive, narModuloHash, path.name(), references, hasSelfReference); - printInfo("rewroting '%s' to '%s'", pathS, srcStore.printStorePath(dstPath)); + printInfo("rewriting '%s' to '%s'", pathS, srcStore.printStorePath(dstPath)); StringSink sink2; RewritingSink rsink2(oldHashPart, std::string(dstPath.hashPart()), sink2); |