diff options
author | Dan McGee <dan@archlinux.org> | 2007-11-21 18:25:50 +0100 |
---|---|---|
committer | Dan McGee <dan@archlinux.org> | 2007-11-21 18:51:17 +0100 |
commit | f5d2150e9db9205a9f208d4144b6d0381f877ad3 (patch) | |
tree | d14b63e9d6f4f7dfb664f8e22c4c21bc25aa24a8 /contrib/bash_completion | |
parent | 0144b2ed29b3e3ae09fd8caeeffdadc10322cc1c (diff) | |
download | pacman-f5d2150e9db9205a9f208d4144b6d0381f877ad3.tar.gz pacman-f5d2150e9db9205a9f208d4144b6d0381f877ad3.tar.xz |
Remove -F/--freshen operation
This operation made sense in the days before sync DBs existed, but it no
longer has the same usefulness it once did.
Signed-off-by: Dan McGee <dan@archlinux.org>
Signed-off-by: Chantry Xavier <shiningxc@gmail.com>
Signed-off-by: Nagy Gabor <ngaba@bibl.u-szeged.hu>
Signed-off-by: Aaron Griffin <aaronmgriffin@gmail.com>
Diffstat (limited to 'contrib/bash_completion')
-rw-r--r-- | contrib/bash_completion | 6 |
1 files changed, 2 insertions, 4 deletions
diff --git a/contrib/bash_completion b/contrib/bash_completion index 6aafc9ec..844396d3 100644 --- a/contrib/bash_completion +++ b/contrib/bash_completion @@ -146,7 +146,7 @@ _pacman () toparse="${a:2}" case "${arg}" in - -@(A|U|F|R|S|Q|h|V)) + -@(A|U|R|S|Q|h|V)) op="${arg/-}" mod="${mod}${a:2}" ;; @@ -156,7 +156,6 @@ _pacman () add) op="A" ;; remove) op="R" ;; upgrade) op="U" ;; - freshen) op="F" ;; query) op="Q" ;; sync) op="S" ;; help) op="h" ;; @@ -204,7 +203,6 @@ _pacman () if [ $COMP_CWORD -eq 1 ] && [[ "$cur" == -* ]]; then COMPREPLY=( $( compgen -W '\ -A --add \ - -F --freshen \ -h --help \ -Q --query \ -R --remove \ @@ -218,7 +216,7 @@ _pacman () if [[ "$cur" == -* ]]; then case "${op}" in - A|U|F) + A|U) COMPREPLY=( $( compgen -W '\ --asdeps \ -d --nodeps \ |