mirror of
https://github.com/f-droid/fdroidserver.git
synced 2025-09-13 22:42:29 +03: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
1 changed files with 20 additions and 20 deletions
|
@ -300,26 +300,26 @@ __complete_init() {
|
||||||
__complete_options
|
__complete_options
|
||||||
}
|
}
|
||||||
|
|
||||||
__cmds="
|
__cmds=" \
|
||||||
btlog
|
btlog \
|
||||||
build
|
build \
|
||||||
checkupdates
|
checkupdates \
|
||||||
dscanner
|
dscanner \
|
||||||
gpgsign
|
gpgsign \
|
||||||
import
|
import \
|
||||||
init
|
init \
|
||||||
install
|
install \
|
||||||
lint
|
lint \
|
||||||
publish
|
publish \
|
||||||
readmeta
|
readmeta \
|
||||||
rewritemeta
|
rewritemeta \
|
||||||
scanner
|
scanner \
|
||||||
server
|
server \
|
||||||
signatures
|
signatures \
|
||||||
signindex
|
signindex \
|
||||||
stats
|
stats \
|
||||||
update
|
update \
|
||||||
verify
|
verify \
|
||||||
"
|
"
|
||||||
|
|
||||||
for c in $__cmds; do
|
for c in $__cmds; do
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue