libfetchers: fix double quote in path printed in logger

This commit is contained in:
Jörg Thalheim 2025-03-19 16:04:04 +01:00
parent d10f9488fe
commit 314e9fbeda

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());