diff options
author | Ben Sima <ben@bsima.me> | 2025-08-26 15:31:06 -0400 |
---|---|---|
committer | Ben Sima <ben@bsima.me> | 2025-08-28 12:14:02 -0400 |
commit | d160fae065a82057cdb56cd7e35f2fde9ea5ac40 (patch) | |
tree | cf738cf95fee95e9b1babc1fa94b4a5b838a2f41 /Omni/Bild | |
parent | 840c2c3f573a0a761b4ac9eeb13ed036cd55db32 (diff) |
Don't put colored output in bild mypy check
The colored output is not decoded by the nix log accumulator, so you just get
these control characters. Get rid of them for more readable output.
Diffstat (limited to 'Omni/Bild')
-rw-r--r-- | Omni/Bild/Builder.nix | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/Omni/Bild/Builder.nix b/Omni/Bild/Builder.nix index f755684..77205b2 100644 --- a/Omni/Bild/Builder.nix +++ b/Omni/Bild/Builder.nix @@ -143,6 +143,7 @@ with bild; let check python -m mypy \ --explicit-package-bases \ --no-error-summary \ + --no-color-output \ --exclude 'setup\.py$' \ . ''; |