diff options
| author | Andreas Karlsson <andreas@proxel.se> | 2024-10-30 15:05:16 +0100 |
|---|---|---|
| committer | Eli Schwartz <eschwartz93@gmail.com> | 2024-11-02 19:55:09 -0400 |
| commit | 2d40813d4264b312acc51b78250513b3536c682b (patch) | |
| tree | 6397c764a399089f75a542c350f29be4c2e9d844 /data | |
| parent | 4ac3e7d356cfc1a6a290cd6961f01c11510c0618 (diff) | |
| download | meson-2d40813d4264b312acc51b78250513b3536c682b.tar.gz | |
Add -q as alternative to --quiet for meson install
Since "meson test" already has both -q and --quiet it makes a lot of
sense to add the short option to "meson install" too for reasons of
symmetry.
Diffstat (limited to 'data')
| -rw-r--r-- | data/shell-completions/bash/meson | 1 | ||||
| -rw-r--r-- | data/shell-completions/zsh/_meson | 2 |
2 files changed, 2 insertions, 1 deletions
diff --git a/data/shell-completions/bash/meson b/data/shell-completions/bash/meson index 0814342db..404369818 100644 --- a/data/shell-completions/bash/meson +++ b/data/shell-completions/bash/meson @@ -408,6 +408,7 @@ _meson-install() { shortopts=( h n + q C ) diff --git a/data/shell-completions/zsh/_meson b/data/shell-completions/zsh/_meson index 8178060b4..f64dfd4f3 100644 --- a/data/shell-completions/zsh/_meson +++ b/data/shell-completions/zsh/_meson @@ -217,7 +217,7 @@ local -a meson_commands=( "$__meson_cd" '--no-rebuild[Do not rebuild before installing]' '--only-changed[Do not overwrite files that are older than the copied file]' - '--quiet[Do not print every file that was installed]' + '(--quiet -q)'{'--quiet','-q'}'[Do not print every file that was installed]' ) _arguments \ '(: -)'{'--help','-h'}'[show a help message and quit]' \ |
