summaryrefslogtreecommitdiff
path: root/completions/chrpath
diff options
context:
space:
mode:
Diffstat (limited to 'completions/chrpath')
-rw-r--r--completions/chrpath8
1 files changed, 4 insertions, 4 deletions
diff --git a/completions/chrpath b/completions/chrpath
index bcd0f91d..2883967b 100644
--- a/completions/chrpath
+++ b/completions/chrpath
@@ -6,22 +6,22 @@ _chrpath()
_init_completion || return
case $prev in
- --version|--help|-!(-*)[vh])
+ --version | --help | -!(-*)[vh])
return
;;
- --replace|-!(-*)r)
+ --replace | -!(-*)r)
_filedir -d
return
;;
esac
if [[ $cur == -* ]]; then
- COMPREPLY=( $(compgen -W '$(_parse_help "$1")' -- "$cur") )
+ COMPREPLY=($(compgen -W '$(_parse_help "$1")' -- "$cur"))
return
fi
_filedir
} &&
-complete -F _chrpath chrpath
+ complete -F _chrpath chrpath
# ex: filetype=sh