From eab6ce453dadaf4def9593ece75750402f5ee383 Mon Sep 17 00:00:00 2001 From: Jonathan Ringer Date: Tue, 19 Mar 2024 17:29:05 -0700 Subject: [PATCH] Add -P shortName for --print-out-paths --- src/nix/build.cc | 1 + 1 file changed, 1 insertion(+) diff --git a/src/nix/build.cc b/src/nix/build.cc index 479100186..ef3d7a7e9 100644 --- a/src/nix/build.cc +++ b/src/nix/build.cc @@ -90,6 +90,7 @@ struct CmdBuild : InstallablesCommand, MixDryRun, MixJSON, MixProfile addFlag({ .longName = "print-out-paths", + .shortName = 'P', .description = "Print the resulting output paths", .handler = {&printOutputPaths, true}, });