From: Daniel Martí Date: Tue, 31 Dec 2013 09:17:49 +0000 (+0100) Subject: Remove a few unnecessary vars X-Git-Tag: 0.1~23^2~50 X-Git-Url: https://www.chiark.greenend.org.uk/ucgi/~ianmdlvl/git?a=commitdiff_plain;h=10fff5a12c44ab2b97cffc144f7dee5b75615480;p=fdroidserver.git Remove a few unnecessary vars --- diff --git a/completion/bash-completion b/completion/bash-completion index b2644d2b..4ac8602b 100644 --- a/completion/bash-completion +++ b/completion/bash-completion @@ -18,8 +18,8 @@ # You should have received a copy of the GNU Affero General Public License # along with this program. If not, see . -# 'fdroid' is aliased automatically, but aliases to it are not. For instance, -# to alias 'fd' to 'fdroid' and have competion available: +# 'fdroid' is completed automatically, but aliases to it are not. +# For instance, to alias 'fd' to 'fdroid' and have competion available: # # alias fd='fdroid' # complete -F _fdroid fd @@ -54,8 +54,7 @@ __apk_package() { } __apk_vercode() { - local p - p=${cur:0:-1} + local p=${cur:0:-1} files=( ${1}/${p}_*.apk ) [ -f "${files[0]}" ] || return @@ -66,8 +65,7 @@ __apk_vercode() { } __vercode() { - local p - p=${cur:0:-1} + local p=${cur:0:-1} COMPREPLY=( $( compgen -P "${p}:" -W "$( while read line; do if [[ "$line" == "Build Version:"* ]] @@ -243,14 +241,13 @@ __complete_init() { } _fdroid() { - local cmd cmds aliased + local cmd cmds cmd=${COMP_WORDS[1]} cmds=" build init install update publish checkupdates import rewritemeta scanner verify stats server " - aliased=false for c in $cmds; do eval "_fdroid_${c} () { - local cur prev cmds opts lopts + local cur prev opts lopts __fdroid_init ${c}; }"; done