diff options
author | Lorenzo Manacorda <lorenzo@mailbox.org> | 2022-06-15 17:32:59 +0200 |
---|---|---|
committer | Lorenzo Manacorda <lorenzo@mailbox.org> | 2022-06-15 17:34:28 +0200 |
commit | 475249db8aa3c998de594b94b38e08b04b117a6c (patch) | |
tree | ce9c84f1d304799f469a4c68455d7777576d2d3d /src/libstore/build/substitution-goal.cc | |
parent | 12e86c0735987cbcc90b86122e9588fef4aa9ba5 (diff) |
libstore: improve warning message on missing sig
Clarifies that the substitute will be ignored/skipped.
Diffstat (limited to 'src/libstore/build/substitution-goal.cc')
-rw-r--r-- | src/libstore/build/substitution-goal.cc | 2 |
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; |