1
1
Fork 0
mirror of https://github.com/NixOS/nix.git synced 2025-11-09 03:56:01 +01:00

Remove "(ignored)" from errors in nix flake check --keep-going

This commit is contained in:
Robert Hensing 2025-10-22 01:03:31 +02:00
parent a38c7eb64e
commit d4fd5c222d

View file

@ -367,7 +367,7 @@ struct CmdFlakeCheck : FlakeCommand
throw; throw;
} catch (Error & e) { } catch (Error & e) {
if (settings.keepGoing) { if (settings.keepGoing) {
ignoreExceptionExceptInterrupt(); logError(e.info());
hasErrors = true; hasErrors = true;
} else } else
throw; throw;