mirror of
https://github.com/Gator96100/ProxSpace.git
synced 2025-08-14 02:27:03 -07:00
Updated msys2 to msys2-base-x86_64-20200903
This commit is contained in:
parent
5bc8dbdc75
commit
2307d54cb1
18501 changed files with 1684082 additions and 720361 deletions
|
@ -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)'
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue