Updated msys2 to msys2-base-x86_64-20200903

This commit is contained in:
Gator96100 2020-09-07 18:14:14 +02:00
commit 2307d54cb1
18501 changed files with 1684082 additions and 720361 deletions

View file

@ -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)'