Merge pull request #8122 from bjornfor/use-nix-store-l-unless-experimental-enabled

Don't recommend 'nix log' unless experimental feature is enabled
This commit is contained in:
John Ericson 2023-04-01 14:50:16 -04:00 committed by GitHub
commit 2ef99cd104
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -911,7 +911,11 @@ void DerivationGoal::buildDone()
msg += line;
msg += "\n";
}
msg += fmt("For full logs, run '" ANSI_BOLD "nix log %s" ANSI_NORMAL "'.",
auto nixLogCommand = experimentalFeatureSettings.isEnabled(Xp::NixCommand)
? "nix log"
: "nix-store -l";
msg += fmt("For full logs, run '" ANSI_BOLD "%s %s" ANSI_NORMAL "'.",
nixLogCommand,
worker.store.printStorePath(drvPath));
}