diff options
author | Rafael Garcia-Suarez <rgarciasuarez@mandriva.org> | 2004-10-14 05:19:01 +0000 |
---|---|---|
committer | Rafael Garcia-Suarez <rgarciasuarez@mandriva.org> | 2004-10-14 05:19:01 +0000 |
commit | c3c1a4efac2f1ba7488def26b1178a29117b7984 (patch) | |
tree | b3b2feb782a202c666c1acd2e4204d76a21f9716 /urpmi.bash-completion | |
parent | 06cc2290d0238f82869b43dd346f685f3cf93136 (diff) | |
download | urpmi-c3c1a4efac2f1ba7488def26b1178a29117b7984.tar urpmi-c3c1a4efac2f1ba7488def26b1178a29117b7984.tar.gz urpmi-c3c1a4efac2f1ba7488def26b1178a29117b7984.tar.bz2 urpmi-c3c1a4efac2f1ba7488def26b1178a29117b7984.tar.xz urpmi-c3c1a4efac2f1ba7488def26b1178a29117b7984.zip |
Put the new options in bash completion
Diffstat (limited to 'urpmi.bash-completion')
-rw-r--r-- | urpmi.bash-completion | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/urpmi.bash-completion b/urpmi.bash-completion index 89a1cde4..4c664078 100644 --- a/urpmi.bash-completion +++ b/urpmi.bash-completion @@ -92,7 +92,7 @@ _urpmi() --noclean --force --allow-nodeps --allow-force --parallel \ --wget --curl --limit-rate --proxy --proxy-user --bug \ --env --X --best-output --verify-rpm --no-verify-rpm \ - --test --excludepath --excludedocs --root' -- $cur ) ) + --test --excludepath --excludedocs --root --norebuild' -- $cur ) ) else # return available packages (unless it is clearly a file) and rpm files if [[ "$cur" != */* ]]; then @@ -181,7 +181,7 @@ _urpmf() if [[ "$cur" == -* ]]; then # return list of available options - COMPREPLY=( $( compgen -W '-i -f -e -a -o --help --update \ + COMPREPLY=( $( compgen -W '-i -f -e -a -o -m --help --update \ --media --excludemedia --sortmedia --synthesis \ --verbose --quiet --uniq --all --name --group --size \ --epoch --summary --description --sourcerpm --packager\ @@ -207,7 +207,7 @@ _urpmi_update() # return list of available options COMPREPLY=( $( compgen -W '-a -c -f -q -v --help --wget \ --curl --limit-rate --proxy --proxy-user --update \ - --no-md5sum --force-key' \ + --no-md5sum --force-key --norebuild' \ -- $cur)) else # return list of available media @@ -230,7 +230,7 @@ _urpmi_addmedia() COMPREPLY=( $( compgen -W '-c -f -h -v -q --help --wget --curl \ --limit-rate --proxy --proxy-user --update \ --probe-synthesis --probe-hdlist --no-probe --distrib \ - --env --version --arch --virtual' -- $cur ) ) + --env --version --arch --virtual --norebuild' -- $cur ) ) else # count number of mandatory args given sofar args=$COMP_CWORD |