aboutsummaryrefslogtreecommitdiff
path: root/src/libstore/build/entry-points.cc
diff options
context:
space:
mode:
authoreldritch horrors <pennae@lix.systems>2024-03-04 08:11:46 +0100
committereldritch horrors <pennae@lix.systems>2024-03-04 08:11:46 +0100
commit5dd872363a8fff8d2a1d4ed182c8112221e4dfb1 (patch)
tree5818d6140b6ac1cafb1dd82243f3c50d243cb29b /src/libstore/build/entry-points.cc
parente81ee8b3371bf1cf9f4415732132f9c24ff736d9 (diff)
Merge pull request #9797 from edolstra/fix-error-message
Store: :buildPaths(): Fix display of store paths (cherry picked from commit b5ed36e6633cac844fe4388dcc0cc8055a18ef9e) Change-Id: Ic6008491088dc6febd4a1e44dc2dbb96c47661f4
Diffstat (limited to 'src/libstore/build/entry-points.cc')
-rw-r--r--src/libstore/build/entry-points.cc4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/libstore/build/entry-points.cc b/src/libstore/build/entry-points.cc
index 74eca63f3..7f0a05d5d 100644
--- a/src/libstore/build/entry-points.cc
+++ b/src/libstore/build/entry-points.cc
@@ -26,9 +26,9 @@ void Store::buildPaths(const std::vector<DerivedPath> & reqs, BuildMode buildMod
}
if (i->exitCode != Goal::ecSuccess) {
if (auto i2 = dynamic_cast<DerivationGoal *>(i.get()))
- failed.insert(std::string { i2->drvPath.to_string() });
+ failed.insert(printStorePath(i2->drvPath));
else if (auto i2 = dynamic_cast<PathSubstitutionGoal *>(i.get()))
- failed.insert(std::string { i2->storePath.to_string()});
+ failed.insert(printStorePath(i2->storePath));
}
}