mirror of
https://gitlab.com/fdroid/fdroidserver.git
synced 2024-11-04 22:40:12 +01:00
bash_completion: fix option completion
Line breaks need to be escaped in the command list.
This commit is contained in:
parent
7db6997eea
commit
237973a1d6
@ -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
|
||||
|
Loading…
Reference in New Issue
Block a user