From 314e9fbeda73b7af7149d304fb04e6fb5426f05c Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?J=C3=B6rg=20Thalheim?= Date: Wed, 19 Mar 2025 16:04:04 +0100 Subject: [PATCH] libfetchers: fix double quote in path printed in logger --- src/libfetchers/path.cc | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/libfetchers/path.cc b/src/libfetchers/path.cc index 9d1cce0f3..bdc7538e2 100644 --- a/src/libfetchers/path.cc +++ b/src/libfetchers/path.cc @@ -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());