diff options
author | Eelco Dolstra <edolstra@gmail.com> | 2017-08-16T15·32+0200 |
---|---|---|
committer | Eelco Dolstra <edolstra@gmail.com> | 2017-08-16T18·56+0200 |
commit | b4ed97e3a3116909fcaa79f5ce84487ed3838112 (patch) | |
tree | d8f1a29dc7a8049cfaa301ee2a04795afbf6c712 /src/libstore/build.cc | |
parent | 23b8b7e096d3a2a784387a09f68115706b1e9552 (diff) |
nix optimise-store: Show how much space has been freed
Diffstat (limited to 'src/libstore/build.cc')
-rw-r--r-- | src/libstore/build.cc | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/libstore/build.cc b/src/libstore/build.cc index 1a1fc1dee54d..fc039a8e52b5 100644 --- a/src/libstore/build.cc +++ b/src/libstore/build.cc @@ -3257,7 +3257,7 @@ void DerivationGoal::flushLine() logTail.push_back(currentLogLine); if (logTail.size() > settings.logLines) logTail.pop_front(); } - act->progress(currentLogLine); + act->result(resBuildLogLine, currentLogLine); currentLogLine = ""; currentLogLinePos = 0; } |