aboutsummaryrefslogtreecommitdiff
path: root/src/nix/log.cc
diff options
context:
space:
mode:
Diffstat (limited to 'src/nix/log.cc')
-rw-r--r--src/nix/log.cc20
1 files changed, 12 insertions, 8 deletions
diff --git a/src/nix/log.cc b/src/nix/log.cc
index aaf829764..9a9bd30f9 100644
--- a/src/nix/log.cc
+++ b/src/nix/log.cc
@@ -33,6 +33,17 @@ struct CmdLog : InstallableCommand
auto b = installable->toDerivedPath();
+ // For compat with CLI today, TODO revisit
+ auto oneUp = std::visit(overloaded {
+ [&](const DerivedPath::Opaque & bo) {
+ return make_ref<SingleDerivedPath>(bo);
+ },
+ [&](const DerivedPath::Built & bfd) {
+ return bfd.drvPath;
+ },
+ }, b.path.raw());
+ auto path = resolveDerivedPath(*store, *oneUp);
+
RunPager pager;
for (auto & sub : subs) {
auto * logSubP = dynamic_cast<LogStore *>(&*sub);
@@ -42,14 +53,7 @@ struct CmdLog : InstallableCommand
}
auto & logSub = *logSubP;
- auto log = std::visit(overloaded {
- [&](const DerivedPath::Opaque & bo) {
- return logSub.getBuildLog(bo.path);
- },
- [&](const DerivedPath::Built & bfd) {
- return logSub.getBuildLog(bfd.drvPath);
- },
- }, b.path.raw());
+ auto log = logSub.getBuildLog(path);
if (!log) continue;
stopProgressBar();
printInfo("got build log for '%s' from '%s'", installable->what(), logSub.getUri());