summaryrefslogtreecommitdiff
path: root/completions/deja-dup
diff options
context:
space:
mode:
Diffstat (limited to 'completions/deja-dup')
-rw-r--r--completions/deja-dup10
1 files changed, 5 insertions, 5 deletions
diff --git a/completions/deja-dup b/completions/deja-dup
index ad3baeb8..1854d6a4 100644
--- a/completions/deja-dup
+++ b/completions/deja-dup
@@ -6,7 +6,7 @@ _deja_dup()
_init_completion -s || return
case $prev in
- -'?'|--help|--help-*)
+ -'?' | --help | --help-*)
return
;;
--restore)
@@ -21,12 +21,12 @@ _deja_dup()
$split && return
- if [[ "$cur" == -* ]]; then
- COMPREPLY=( $(compgen -W '$(_parse_help "$1" --help-all)' -- "$cur") )
- [[ $COMPREPLY == *= ]] && compopt -o nospace
+ if [[ $cur == -* ]]; then
+ COMPREPLY=($(compgen -W '$(_parse_help "$1" --help-all)' -- "$cur"))
+ [[ ${COMPREPLY-} == *= ]] && compopt -o nospace
return
fi
} &&
-complete -F _deja_dup deja-dup
+ complete -F _deja_dup deja-dup
# ex: filetype=sh