Update bash ans zsh completions with jobs and enable-beta opts.
This commit is contained in:
parent
d7b09507bb
commit
c5e6ed041c
2 changed files with 5 additions and 5 deletions
|
@ -36,10 +36,10 @@ _cdist()
|
|||
return 0
|
||||
;;
|
||||
config)
|
||||
opts="-h --help -d --debug -v --verbose \
|
||||
-c --conf-dir -f --file -i --initial-manifest -n --dry-run \
|
||||
-o --out-dir -p --parallel -s --sequential --remote-copy \
|
||||
--remote-exec"
|
||||
opts="-h --help -d --debug -v --verbose -b --enable-beta \
|
||||
-c --conf-dir -f --file -i --initial-manifest -j --jobs \
|
||||
-n --dry-run -o --out-dir -p --parallel -s --sequential \
|
||||
--remote-copy --remote-exec"
|
||||
COMPREPLY=( $(compgen -W "${opts}" -- ${cur}) )
|
||||
return 0
|
||||
;;
|
||||
|
|
|
@ -36,7 +36,7 @@ _cdist()
|
|||
esac
|
||||
;;
|
||||
config)
|
||||
opts=(-h --help -d --debug -v --verbose -c --conf-dir -f --file -i --initial-manifest -n --dry-run -o --out-dir -p --parallel -s --sequential --remote-copy --remote-exec)
|
||||
opts=(-h --help -d --debug -v --verbose -b --enable-beta -c --conf-dir -f --file -i --initial-manifest -j --jobs -n --dry-run -o --out-dir -p --parallel -s --sequential --remote-copy --remote-exec)
|
||||
compadd "$@" -- $opts
|
||||
;;
|
||||
*)
|
||||
|
|
Loading…
Reference in a new issue