diff options
author | 2009-01-11 20:08:05 +0100 | |
---|---|---|
committer | 2009-01-11 20:08:05 +0100 | |
commit | 3932acf512bbf016d53ce0182ee02cbca60bcca0 (patch) | |
tree | 55a5f251ee948899ecd5310fa9fcf784c9e7cacf /bash-completion | |
parent | 3b2024c43745607ee7bfa49910724b0df890f6cd (diff) | |
download | paludis-3932acf512bbf016d53ce0182ee02cbca60bcca0.tar.gz paludis-3932acf512bbf016d53ce0182ee02cbca60bcca0.tar.xz |
bash-completion: Update for phases support. Fixes:697.
Diffstat (limited to 'bash-completion')
-rw-r--r-- | bash-completion/paludis | 9 |
1 files changed, 8 insertions, 1 deletions
diff --git a/bash-completion/paludis b/bash-completion/paludis index 123094a02..832bac71c 100644 --- a/bash-completion/paludis +++ b/bash-completion/paludis @@ -107,6 +107,10 @@ _paludis() { --show-use-descriptions \ --show-package-descriptions \ --continue-on-failure \ + --skip-phase \ + --abort-at-phase \ + --skip-until-phase \ + --change-phases-for \ --compact \ ${deplist_opts}" uninstall_opts="--pretend -p \ @@ -231,7 +235,10 @@ _paludis() { COMPREPLY=($(compgen -W "if-fetch-only never if-satisfied if-independent always" -- "${cur}")) return 0 ;; - + --change-phases-for) + COMPREPLY=($(compgen -W "all first last" -- "${cur}")) + return 0 + ;; --dl-reinstall) COMPREPLY=($(compgen -W "never always if-use-changed" -- "${cur}")) return 0 |