diff options
author | Qyriad <qyriad@qyriad.me> | 2024-05-23 16:54:04 -0600 |
---|---|---|
committer | Qyriad <qyriad@qyriad.me> | 2024-05-24 02:22:25 +0000 |
commit | bb6d43b63ba664fdda6eba6fd3752f985e76e302 (patch) | |
tree | 247a1c5864e8bbbab08cef9ced37a8563816fb1c | |
parent | d1fa446454ce6bb1119dac5caa181be977c24c61 (diff) |
justfile: remove --quiet from `just test`
`meson test` refuses to let `--verbose` (which shows the entire
invocation and stdio) override `--quiet`, but if neither are specified
in the justfile then you can use either `just test -q` or `just test -v`
Change-Id: I449e13084ce64666b7ee2ab4280818782fb8185a
-rw-r--r-- | justfile | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -24,4 +24,4 @@ install *OPTIONS: (build OPTIONS) # Run tests test *OPTIONS: - meson test -C build --print-errorlogs --quiet {{ OPTIONS }} + meson test -C build --print-errorlogs {{ OPTIONS }} |