1
0
Fork 0
mirror of https://github.com/NixOS/nix synced 2025-07-06 21:41:48 +02:00

libfetchers: fix double quote in path printed in logger

(cherry picked from commit 314e9fbeda)
This commit is contained in:
Jörg Thalheim 2025-03-19 16:04:04 +01:00 committed by Mergify
parent b5dc44c586
commit 0ec28acef9

View file

@ -125,7 +125,7 @@ struct PathInputScheme : InputScheme
auto absPath = getAbsPath(input);
Activity act(*logger, lvlTalkative, actUnknown, fmt("copying '%s' to the store", absPath));
Activity act(*logger, lvlTalkative, actUnknown, fmt("copying %s to the store", absPath));
// FIXME: check whether access to 'path' is allowed.
auto storePath = store->maybeParseStorePath(absPath.string());