From: Hans-Christoph Steiner Date: Thu, 7 Dec 2017 23:09:41 +0000 (+0100) Subject: remove XML files from bash completion, they are not supported anymore X-Git-Tag: 1.0.0~33^2 X-Git-Url: http://www.chiark.greenend.org.uk/ucgi/~ianmdlvl/git?a=commitdiff_plain;h=5c9d46b5b273515c7abc627b097ff7bfa9745fba;p=fdroidserver.git remove XML files from bash completion, they are not supported anymore --- diff --git a/completion/bash-completion b/completion/bash-completion index 3627ae46..28588656 100644 --- a/completion/bash-completion +++ b/completion/bash-completion @@ -35,7 +35,7 @@ __by_ext() { } __package() { - files="$(__by_ext txt) $(__by_ext yml) $(__by_ext json) $(__by_ext xml)" + files="$(__by_ext txt) $(__by_ext yml) $(__by_ext json)" COMPREPLY=( $( compgen -W "$files" -- $cur ) ) }