Add --quiet (-q) flag to suppress non-error output#9
Merged
Conversation
3422300 to
0805595
Compare
Add a quiet mode that suppresses all build progress output (target names, status messages, info) while still printing errors. Useful for scripting or CI where only failures matter. The flag is propagated to child processes via the REDO_QUIET environment variable, so the entire build tree stays silent.
10 tests covering: - Silent output on successful build - Normal mode still shows output (control test) - Errors still printed in quiet mode - Quiet propagates to nested child builds - --quiet long form - -q combined with -k flag - Multiple targets with -q - Build correctness unaffected by -q - Nested build errors show error chain in quiet mode - Warnings are not suppressed by -q
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
Summary
Add a quiet mode (
-q/--quiet) that suppresses all build progress output while still printing errors. On a successful build, redo produces no output at all.Motivation
When running redo in scripts, CI pipelines, or as part of larger build systems, the per-target progress output could be considered noise. A quiet flag lets users opt into silence and only see failures (and warnings).
Example