mirror of
https://github.com/NixOS/nix.git
synced 2025-11-09 20:16:03 +01:00
libfetchers: fix double quote in path printed in logger
This commit is contained in:
parent
d10f9488fe
commit
314e9fbeda
1 changed files with 1 additions and 1 deletions
|
|
@ -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());
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue