diff options
author | 2006-08-31 02:38:10 +0000 | |
---|---|---|
committer | 2006-08-31 02:38:10 +0000 | |
commit | f8055da01e68ff05486cb5e55e8ecbbf57b41ac7 (patch) | |
tree | c70b8504f34482a554cb536f80d6248cd31e888b /bash-completion | |
parent | ecc143b74f03a256d24dc6607081e8eb459f8056 (diff) | |
download | paludis-f8055da01e68ff05486cb5e55e8ecbbf57b41ac7.tar.gz paludis-f8055da01e68ff05486cb5e55e8ecbbf57b41ac7.tar.xz |
We should use --log-level silent for all the calls to paludis, or things get crazy.
Diffstat (limited to 'bash-completion')
-rw-r--r-- | bash-completion/paludis | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/bash-completion/paludis b/bash-completion/paludis index 2952db325..03fb98d88 100644 --- a/bash-completion/paludis +++ b/bash-completion/paludis @@ -72,20 +72,20 @@ _paludis() { return 0 ;; --repository) - COMPREPLY=($(compgen -W "`paludis --no-colour --list-repositories |grep \"^*\" |cut -d\" \" -f2-`" -- "${cur}")) + COMPREPLY=($(compgen -W "`paludis --no-colour --list-repositories --log-level silent |grep \"^*\" |cut -d\" \" -f2-`" -- "${cur}")) return 0 ;; --category) - COMPREPLY=($(compgen -W "`paludis --no-colour --list-categories |grep \"^*\" |cut -d\" \" -f2-`" -- "${cur}")) + COMPREPLY=($(compgen -W "`paludis --no-colour --list-categories --log-level silent |grep \"^*\" |cut -d\" \" -f2-`" -- "${cur}")) return 0 ;; --package) - COMPREPLY=($(compgen -W "`paludis --no-colour --list-packages |grep \"^*\" |cut -d\" \" -f2-`" -- "${cur}")) + COMPREPLY=($(compgen -W "`paludis --no-colour --list-packages --log-level silent |grep \"^*\" |cut -d\" \" -f2-`" -- "${cur}")) return 0 ;; *) # Do package name completion, etc - COMPREPLY=($(compgen -W "`paludis --no-colour --list-packages |grep \"^*\" |cut -d\" \" -f2-`" -- "${cur}")) + COMPREPLY=($(compgen -W "`paludis --no-colour --list-packages --log-level silent |grep \"^*\" |cut -d\" \" -f2-`" -- "${cur}")) return 0 ;; esac |