We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents 258b5ef + dc359f8 commit cca4e8cCopy full SHA for cca4e8c
src/libcmd/repl.cc
@@ -101,6 +101,9 @@ struct NixRepl
101
Value & v,
102
unsigned int maxDepth = std::numeric_limits<unsigned int>::max())
103
{
104
+ // Hide the progress bar during printing because it might interfere
105
+ logger->pause();
106
+ Finally resumeLoggerDefer([]() { logger->resume(); });
107
::nix::printValue(*state, str, v, PrintOptions {
108
.ansiColors = true,
109
.force = true,
0 commit comments