1
0
mirror of https://gitlab.com/fdroid/fdroidserver.git synced 2024-07-07 09:50:07 +02:00

Merge branch 'yml_completion' into 'master'

bash completion: use correct yml suffix

See merge request fdroid/fdroidserver!406
This commit is contained in:
Hans-Christoph Steiner 2017-12-07 23:10:18 +00:00
commit 5ac943a3f2

View File

@ -35,7 +35,7 @@ __by_ext() {
} }
__package() { __package() {
files="$(__by_ext txt) $(__by_ext yaml) $(__by_ext json) $(__by_ext xml)" files="$(__by_ext txt) $(__by_ext yml) $(__by_ext json) $(__by_ext xml)"
COMPREPLY=( $( compgen -W "$files" -- $cur ) ) COMPREPLY=( $( compgen -W "$files" -- $cur ) )
} }