forked from lix-project/lix
Update strings from review comment
This commit is contained in:
parent
9ac0d98a59
commit
6438ba1e99
|
@ -670,7 +670,7 @@ void copyPaths(ref<Store> srcStore, ref<Store> dstStore, const StorePathSet & st
|
||||||
if (info->isContentAddressed(*srcStore)) {
|
if (info->isContentAddressed(*srcStore)) {
|
||||||
storePathForDst = dstStore->makeFixedOutputPathFromCA(storePath.name(), info->ca);
|
storePathForDst = dstStore->makeFixedOutputPathFromCA(storePath.name(), info->ca);
|
||||||
if (storePathForDst != storePath)
|
if (storePathForDst != storePath)
|
||||||
debug("rewriting path '%s' to '%s' for substituter '%s'", srcStore->printStorePath(storePath), dstStore->printStorePath(storePathForDst), dstStore->getUri());
|
debug("replaced path '%s' to '%s' for substituter '%s'", srcStore->printStorePath(storePath), dstStore->printStorePath(storePathForDst), dstStore->getUri());
|
||||||
}
|
}
|
||||||
|
|
||||||
if (dstStore->isValidPath(storePathForDst)) {
|
if (dstStore->isValidPath(storePathForDst)) {
|
||||||
|
@ -695,7 +695,7 @@ void copyPaths(ref<Store> srcStore, ref<Store> dstStore, const StorePathSet & st
|
||||||
if (info->isContentAddressed(*srcStore)) {
|
if (info->isContentAddressed(*srcStore)) {
|
||||||
storePathForDst = dstStore->makeFixedOutputPathFromCA(storePath.name(), info->ca);
|
storePathForDst = dstStore->makeFixedOutputPathFromCA(storePath.name(), info->ca);
|
||||||
if (storePathForDst != storePath)
|
if (storePathForDst != storePath)
|
||||||
debug("rewriting path '%s' to '%s' for substituter '%s'", srcStore->printStorePath(storePath), dstStore->printStorePath(storePathForDst), dstStore->getUri());
|
debug("replaced path '%s' to '%s' for substituter '%s'", srcStore->printStorePath(storePath), dstStore->printStorePath(storePathForDst), dstStore->getUri());
|
||||||
}
|
}
|
||||||
|
|
||||||
if (!dstStore->isValidPath(storePathForDst)) {
|
if (!dstStore->isValidPath(storePathForDst)) {
|
||||||
|
|
|
@ -26,7 +26,7 @@ struct CmdAddToStore : MixDryRun, StoreCommand
|
||||||
addFlag({
|
addFlag({
|
||||||
.longName = "flat",
|
.longName = "flat",
|
||||||
.shortName = 0,
|
.shortName = 0,
|
||||||
.description = "use flat file ingestion",
|
.description = "add flat file to the Nix store",
|
||||||
.handler = {&ingestionMethod, FileIngestionMethod::Flat},
|
.handler = {&ingestionMethod, FileIngestionMethod::Flat},
|
||||||
});
|
});
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in a new issue