diff options
author | Naïm Favier <n@monade.li> | 2022-05-11 12:55:31 +0200 |
---|---|---|
committer | Naïm Favier <n@monade.li> | 2022-05-11 12:58:45 +0200 |
commit | 1461e6cdda06f7f461114cce5b415f6d50381311 (patch) | |
tree | 09b6f1a0b61897486a517f4388c46c951f9d9c19 /src/nix-store/nix-store.cc | |
parent | 7062ebf5beb62b069dbf7e83f9c0dd92cf999cd3 (diff) |
Stop the logger properly in legacy commands
Ensures the logger is stopped on exit in legacy commands. Without this,
when using `nix-build --log-format bar` and stopping nix with CTRL+C,
the bar is not cleared from the screen.
Diffstat (limited to 'src/nix-store/nix-store.cc')
-rw-r--r-- | src/nix-store/nix-store.cc | 2 |
1 files changed, 0 insertions, 2 deletions
diff --git a/src/nix-store/nix-store.cc b/src/nix-store/nix-store.cc index 153b84137..9163eefd0 100644 --- a/src/nix-store/nix-store.cc +++ b/src/nix-store/nix-store.cc @@ -1095,8 +1095,6 @@ static int main_nix_store(int argc, char * * argv) op(opFlags, opArgs); - logger->stop(); - return 0; } } |