mirror of
https://github.com/NixOS/nix
synced 2025-06-28 01:11:15 +02:00
nix-store --serve: Suppress log output on stderr when repeating a build
This commit is contained in:
parent
6069b946ad
commit
7a3e7d0e61
3 changed files with 8 additions and 1 deletions
|
@ -3047,7 +3047,8 @@ void DerivationGoal::handleEOF(int fd)
|
|||
|
||||
void DerivationGoal::flushLine()
|
||||
{
|
||||
if (settings.verboseBuild)
|
||||
if (settings.verboseBuild &&
|
||||
(settings.printRepeatedBuilds || curRound == 1))
|
||||
printError(filterANSIEscapes(currentLogLine, true));
|
||||
else {
|
||||
logTail.push_back(currentLogLine);
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue