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

@ -7,7 +7,7 @@ _jarsigner()
case $prev in
-keystore)
COMPREPLY=( $( compgen -W 'NONE' -- "$cur" ) )
COMPREPLY=( $(compgen -W 'NONE' -- "$cur") )
_filedir '@(jks|ks|p12|pfx)'
return
;;
@ -21,7 +21,7 @@ _jarsigner()
return
;;
-storetype)
COMPREPLY=( $( compgen -W 'JKS PKCS11 PKCS12' -- "$cur" ) )
COMPREPLY=( $(compgen -W 'JKS PKCS11 PKCS12' -- "$cur") )
return
;;
-signedjar)
@ -34,20 +34,20 @@ _jarsigner()
local i jar=false
for (( i=0; i < ${#words[@]}-1; i++ )) ; do
if [[ "${words[i]}" == *.jar && \
"${words[i-1]}" != -signedjar ]] ; then
"${words[i-1]}" != -signedjar ]]; then
jar=true
break
fi
done
if ! $jar ; then
if [[ "$cur" == -* ]] ; then
if [[ "$cur" == -* ]]; then
# Documented as "should not be used": -internalsf, -sectionsonly
COMPREPLY=( $( compgen -W '-keystore -storepass -storetype
COMPREPLY=( $(compgen -W '-keystore -storepass -storetype
-keypass -sigfile -signedjar -digestalg -sigalg -verify
-verbose -certs -tsa -tsacert -altsigner -altsignerpath
-protected -providerName -providerClass -providerArg' \
-- "$cur" ) )
-- "$cur") )
fi
_filedir jar
fi