Msys2 base update to msys2-base-x86_64-20210215

This commit is contained in:
Gator96100 2021-03-02 12:57:20 +01:00
commit 8f57ce888b
4308 changed files with 50038 additions and 28648 deletions

View file

@ -15,15 +15,15 @@ _badblocks()
;;
esac
if [[ "$cur" == -* ]]; then
if [[ $cur == -* ]]; then
# Filter out -w (dangerous) and -X (internal use)
COMPREPLY=( $(compgen -X -[wX] -W '$(_parse_usage "$1")' -- "$cur") )
COMPREPLY=($(compgen -X -[wX] -W '$(_parse_usage "$1")' -- "$cur"))
return
fi
cur=${cur:=/dev/}
_filedir
} &&
complete -F _badblocks badblocks
complete -F _badblocks badblocks
# ex: filetype=sh