diff options
author | 2008-12-16 20:48:31 +0100 | |
---|---|---|
committer | 2008-12-16 20:48:31 +0100 | |
commit | 3b0db6a4d8f8a43fac7116b5f0b8a77b7875289c (patch) | |
tree | b2313c0eea2d5fd9410d986fcf3510d33db785c8 /bash-completion | |
parent | ff85952386c31913d930677bbf3eca2e41ef10fb (diff) | |
download | paludis-3b0db6a4d8f8a43fac7116b5f0b8a77b7875289c.tar.gz paludis-3b0db6a4d8f8a43fac7116b5f0b8a77b7875289c.tar.xz |
Update completions for removal of --checks, --debug-build. ticket #687.
Diffstat (limited to 'bash-completion')
-rw-r--r-- | bash-completion/paludis | 10 | ||||
-rw-r--r-- | bash-completion/reconcilio | 10 |
2 files changed, 0 insertions, 20 deletions
diff --git a/bash-completion/paludis b/bash-completion/paludis index 083210a49..123094a02 100644 --- a/bash-completion/paludis +++ b/bash-completion/paludis @@ -101,8 +101,6 @@ _paludis() { --destinations -d \ --preserve-world -1 \ --add-to-world-spec \ - --debug-build \ - --checks \ --fetch -f \ --no-safe-resume \ --show-reasons \ @@ -217,14 +215,6 @@ _paludis() { COMPREPLY=($(compgen -W "debug qa warning silent" -- "${cur}")) return 0 ;; - --debug-build) - COMPREPLY=($(compgen -W "none split internal" -- "${cur}")) - return 0 - ;; - --checks) - COMPREPLY=($(compgen -W "none default always" -- "${cur}")) - return 0 - ;; --show-reasons) COMPREPLY=($(compgen -W "none summary full" -- "${cur}")) return 0 diff --git a/bash-completion/reconcilio b/bash-completion/reconcilio index e3cbcdde3..7c777cf78 100644 --- a/bash-completion/reconcilio +++ b/bash-completion/reconcilio @@ -45,8 +45,6 @@ _reconcilio() { --dl-fall-back" install_opts="--pretend -p \ --no-config-protection \ - --debug-build \ - --checks \ --fetch -f \ --no-safe-resume \ --show-reasons \ @@ -89,14 +87,6 @@ _reconcilio() { COMPREPLY=($(compgen -W "debug qa warning silent" -- "${cur}")) return 0 ;; - --debug-build) - COMPREPLY=($(compgen -W "none split internal" -- "${cur}")) - return 0 - ;; - --checks) - COMPREPLY=($(compgen -W "none default always" -- "${cur}")) - return 0 - ;; --show-reasons) COMPREPLY=($(compgen -W "none summary full" -- "${cur}")) return 0 |