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

@ -37,18 +37,18 @@ _mr() {
;;
clean)
if [[ "${cur}" == -* ]]; then
COMPREPLY=( $( compgen -W '-f' -- "${cur}" ) )
COMPREPLY=( $(compgen -W '-f' -- "${cur}") )
fi
return
;;
commit|ci|record)
if [[ "${cur}" == -* ]]; then
COMPREPLY=( $( compgen -W '-m' -- "${cur}" ) )
COMPREPLY=( $(compgen -W '-m' -- "${cur}") )
fi
return
;;
run)
COMPREPLY=( $( compgen -c -- "${cur}" ) )
COMPREPLY=( $(compgen -c -- "${cur}") )
return
;;
*)
@ -60,11 +60,11 @@ _mr() {
# Complete top-level options and commands.
case $prev in
-c|--config)
--config|-!(-*)c)
_filedir
return
;;
-d|--directory)
--directory|-!(-*)d)
_filedir -d
return
;;
@ -76,9 +76,9 @@ _mr() {
options="${options//-[a-z]$'\n'/}"
# Remove deprecated options.
options="${options//--path/}"
COMPREPLY=( $( compgen -W "${options}" -- "${cur}" ) )
COMPREPLY=( $(compgen -W "${options}" -- "${cur}") )
else
COMPREPLY=( $( compgen -W "${commands}" -- "${cur}" ) )
COMPREPLY=( $(compgen -W "${commands}" -- "${cur}") )
fi
} &&
complete -F _mr mr