aboutsummaryrefslogtreecommitdiff
path: root/src/libstore/build
diff options
context:
space:
mode:
authorThéophane Hufschmitt <7226587+thufschmitt@users.noreply.github.com>2022-06-23 06:42:48 +0200
committerGitHub <noreply@github.com>2022-06-23 06:42:48 +0200
commit027f6a735fa72b65825eb9fa870affed045c8f1d (patch)
treeda4fcfbe0002dd2ada09e87e1b8f01c7aa1e594a /src/libstore/build
parenteafa2721ca8996ff55897033243ac56ca1c8196c (diff)
parent475249db8aa3c998de594b94b38e08b04b117a6c (diff)
Merge pull request #6673 from asymmetric/warn
libstore: improve warning message on missing sig
Diffstat (limited to 'src/libstore/build')
-rw-r--r--src/libstore/build/substitution-goal.cc2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/libstore/build/substitution-goal.cc b/src/libstore/build/substitution-goal.cc
index ca5218627..3a5da13fb 100644
--- a/src/libstore/build/substitution-goal.cc
+++ b/src/libstore/build/substitution-goal.cc
@@ -154,7 +154,7 @@ void PathSubstitutionGoal::tryNext()
only after we've downloaded the path. */
if (!sub->isTrusted && worker.store.pathInfoIsUntrusted(*info))
{
- warn("the substitute for '%s' from '%s' is not signed by any of the keys in 'trusted-public-keys'",
+ warn("igoring substitute for '%s' from '%s', as it's not signed by any of the keys in 'trusted-public-keys'",
worker.store.printStorePath(storePath), sub->getUri());
tryNext();
return;