1
0
mirror of https://gitlab.com/fdroid/fdroidserver.git synced 2024-07-04 16:30:12 +02:00

bash_completion: fix option completion

Line breaks need to be escaped in the command list.
This commit is contained in:
Marcus Hoffmann 2017-09-13 14:02:04 +02:00
parent 7db6997eea
commit 237973a1d6

View File

@ -300,26 +300,26 @@ __complete_init() {
__complete_options
}
__cmds="
btlog
build
checkupdates
dscanner
gpgsign
import
init
install
lint
publish
readmeta
rewritemeta
scanner
server
signatures
signindex
stats
update
verify
__cmds=" \
btlog \
build \
checkupdates \
dscanner \
gpgsign \
import \
init \
install \
lint \
publish \
readmeta \
rewritemeta \
scanner \
server \
signatures \
signindex \
stats \
update \
verify \
"
for c in $__cmds; do