summaryrefslogtreecommitdiff
path: root/completions/pack200
diff options
context:
space:
mode:
Diffstat (limited to 'completions/pack200')
-rw-r--r--completions/pack20016
1 files changed, 8 insertions, 8 deletions
diff --git a/completions/pack200 b/completions/pack200
index 37c57749..f35840b0 100644
--- a/completions/pack200
+++ b/completions/pack200
@@ -12,19 +12,19 @@ _pack200()
return
;;
-E|--effort)
- COMPREPLY=( $( compgen -W '{0..9}' -- "$cur" ) )
+ COMPREPLY=( $(compgen -W '{0..9}' -- "$cur") )
return
;;
-H|--deflate-hint)
- COMPREPLY=( $( compgen -W 'true false keep' -- "$cur" ) )
+ COMPREPLY=( $(compgen -W 'true false keep' -- "$cur") )
return
;;
-m|--modification-time)
- COMPREPLY=( $( compgen -W 'latest keep' -- "$cur" ) )
+ COMPREPLY=( $(compgen -W 'latest keep' -- "$cur") )
return
;;
-U|--unknown-attribute)
- COMPREPLY=( $( compgen -W 'error strip pass' -- "$cur" ) )
+ COMPREPLY=( $(compgen -W 'error strip pass' -- "$cur") )
return
;;
-f|--config-file)
@@ -32,7 +32,7 @@ _pack200()
return
;;
-l|--log-file)
- COMPREPLY=( $( compgen -W '-' -- "$cur" ) )
+ COMPREPLY=( $(compgen -W '-' -- "$cur") )
_filedir log
return
;;
@@ -54,13 +54,13 @@ _pack200()
done
if ! $pack ; then
- if [[ "$cur" == -* ]] ; then
- COMPREPLY=( $( compgen -W '--no-gzip --gzip --strip-debug
+ if [[ "$cur" == -* ]]; then
+ COMPREPLY=( $(compgen -W '--no-gzip --gzip --strip-debug
--no-keep-file-order --segment-limit= --effort= --deflate-hint=
--modification-time= --pass-file= --unknown-attribute=
--class-attribute= --field-attribute= --method-attribute=
--code-attribute= --config-file= --verbose --quiet --log-file=
- --help --version -J --repack' -- "$cur" ) )
+ --help --version -J --repack' -- "$cur") )
[[ $COMPREPLY == *= ]] && compopt -o nospace
else
_filedir 'pack?(.gz)'