diff options
author | Pascal Rigaux <pixel@mandriva.com> | 2008-02-25 19:02:48 +0000 |
---|---|---|
committer | Pascal Rigaux <pixel@mandriva.com> | 2008-02-25 19:02:48 +0000 |
commit | a2ffd34e9abce60b4e3750399801fe88f5c6cfe9 (patch) | |
tree | 34ad939fbac43940376c23fc66f3959a19b79953 /urpmi.bash-completion | |
parent | 5482ea719643de47d53192da3f2afa8a0f49038d (diff) | |
download | urpmi-a2ffd34e9abce60b4e3750399801fe88f5c6cfe9.tar urpmi-a2ffd34e9abce60b4e3750399801fe88f5c6cfe9.tar.gz urpmi-a2ffd34e9abce60b4e3750399801fe88f5c6cfe9.tar.bz2 urpmi-a2ffd34e9abce60b4e3750399801fe88f5c6cfe9.tar.xz urpmi-a2ffd34e9abce60b4e3750399801fe88f5c6cfe9.zip |
- -c option is no more (only kept for compatibility in urpmi.update)
- {cachedir}/headers is not used anymore
Diffstat (limited to 'urpmi.bash-completion')
-rw-r--r-- | urpmi.bash-completion | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/urpmi.bash-completion b/urpmi.bash-completion index 47aa8d67..2375937f 100644 --- a/urpmi.bash-completion +++ b/urpmi.bash-completion @@ -222,7 +222,7 @@ _urpmi_update() if [[ "$cur" == -* ]]; then # return list of available options - COMPREPLY=( $( compgen -W "$common_options -a -c -f --wget --prozilla \ + COMPREPLY=( $( compgen -W "$common_options -a -f --wget --prozilla \ --curl --limit-rate --proxy --proxy-user --update \ --ignore --no-ignore \ --no-md5sum --force-key --norebuild" \ @@ -245,7 +245,7 @@ _urpmi_addmedia() if [[ "$cur" == -* ]]; then # return list of available options - COMPREPLY=( $( compgen -W "$common_options -c -f --wget --curl --prozilla \ + COMPREPLY=( $( compgen -W "$common_options -f --wget --curl --prozilla \ --limit-rate --proxy --proxy-user --update --raw \ --probe-synthesis --probe-hdlist --probe-rpms --no-probe --distrib \ --env --version --arch --virtual --norebuild --nopubkey" -- $cur ) ) @@ -288,7 +288,7 @@ _urpmi_removemedia() if [[ "$cur" == -* ]]; then # if word begins with a dash, return list of available options - COMPREPLY=( $( compgen -W "$common_options -a -c -y" -- $cur ) ) + COMPREPLY=( $( compgen -W "$common_options -a -y" -- $cur ) ) else # elsewhere, return list of available media _urpmi_medias |