From 47a937d512007d7d78e242d35dd086d332547913 Mon Sep 17 00:00:00 2001 From: Eelco Dolstra Date: Fri, 31 May 2019 18:48:28 +0200 Subject: [PATCH] Show hash mismatch warnings in SRI format (cherry picked from commit 63c5c91cc053cbc1fcb8d3fe71c41142c9f51bfa) --- src/libstore/build.cc | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/libstore/build.cc b/src/libstore/build.cc index e9e1fe4b1..31011cd7c 100644 --- a/src/libstore/build.cc +++ b/src/libstore/build.cc @@ -3685,7 +3685,7 @@ void DerivationGoal::registerOutputs() worker.hashMismatch = true; delayedException = std::make_exception_ptr( BuildError("hash mismatch in fixed-output derivation '%s':\n wanted: %s\n got: %s", - dest, h.to_string(), h2.to_string())); + dest, h.to_string(SRI), h2.to_string(SRI))); Path actualDest = worker.store.toRealPath(dest);