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

@ -16,8 +16,8 @@ _cdrecord()
_filedir
;;
blank)
COMPREPLY=( $( compgen -W 'help all fast track unreserve trtail
unclose session' -- "$cur" ) )
COMPREPLY=( $(compgen -W 'help all fast track unreserve trtail
unclose session' -- "$cur") )
;;
driveropts)
if [[ $cur == *=* ]]; then
@ -25,31 +25,30 @@ _cdrecord()
cur=${cur#*=}
case $prev in
varirec)
COMPREPLY=( $( compgen -W "-2 -1 0 1 2" \
-- "$cur" ) )
COMPREPLY=( $(compgen -W "-2 -1 0 1 2" -- "$cur") )
;;
gigarec)
COMPREPLY=( $( compgen -W "0.6 0.7 0.8 1.0 1.2 1.3
1.4" -- "$cur" ) )
COMPREPLY=( $(compgen -W "0.6 0.7 0.8 1.0 1.2 1.3
1.4" -- "$cur") )
;;
tattoofile)
_filedir
;;
esac
else
COMPREPLY=( $( compgen -W 'burnfree noburnfree varirec=
COMPREPLY=( $(compgen -W 'burnfree noburnfree varirec=
gigarec= audiomaster forcespeed noforcespeed speedread
nospeedread singlesession nosinglesession hidecdr
nohidecdr tattooinfo tattoofile=' -- "$cur" ) )
nohidecdr tattooinfo tattoofile=' -- "$cur") )
[[ $COMPREPLY == *= ]] && compopt -o nospace
fi
;;
driver)
COMPREPLY=( $( compgen -W "$( $1 driver=help 2>&1 | \
awk 'NR > 1 { print $1 }' ) help" -- "$cur" ) )
COMPREPLY=( $(compgen -W "$($1 driver=help 2>&1 | \
awk 'NR > 1 { print $1 }') help" -- "$cur") )
;;
minbuf)
COMPREPLY=( $( compgen -W '{25..95}' -- "$cur" ) )
COMPREPLY=( $(compgen -W '{25..95}' -- "$cur") )
;;
esac
return
@ -83,10 +82,10 @@ _cdrecord()
# files are always eligible completion
_filedir
# track options are always available
COMPREPLY+=( $( compgen -W '${track_options[@]}' -- "$cur" ) )
COMPREPLY+=( $(compgen -W '${track_options[@]}' -- "$cur") )
# general options are no more available after file or track option
if [[ $track_mode -eq 0 ]]; then
COMPREPLY+=( $( compgen -W '${generic_options[@]}' -- "$cur" ) )
COMPREPLY+=( $(compgen -W '${generic_options[@]}' -- "$cur") )
fi
[[ $COMPREPLY == *= ]] && compopt -o nospace
} &&