diff --git a/src/libstore/build.cc b/src/libstore/build.cc index 117029fb0a..ec7c906835 100644 --- a/src/libstore/build.cc +++ b/src/libstore/build.cc @@ -1139,7 +1139,7 @@ void DerivationGoal::computeClosure() Hash h2 = recursive ? hashPath(ht, path) : hashFile(ht, path); if (h != h2) throw Error( - format("output path `%1% should have %2% hash `%3%', instead has `%4%'") + format("output path `%1%' should have %2% hash `%3%', instead has `%4%'") % path % algo % printHash(h) % printHash(h2)); }