1
0
Fork 0
mirror of https://github.com/NixOS/nix synced 2025-06-27 08:31:16 +02:00

* Option `-B' to always show the output of builders, regardless of

verbosity level.
This commit is contained in:
Eelco Dolstra 2004-01-13 16:35:43 +00:00
parent 3495d153b3
commit ff9af107d3
7 changed files with 27 additions and 1 deletions

View file

@ -51,6 +51,8 @@ static void initAndRun(int argc, char * * argv)
string arg = *i;
if (arg == "--verbose" || arg == "-v")
verbosity = (Verbosity) ((int) verbosity + 1);
else if (arg == "--build-output" || arg == "-B")
buildVerbosity = lvlError; /* lowest */
else if (arg == "--help") {
printHelp();
return;