kiss: Fix shellcheck

This commit is contained in:
Dylan Araps 2020-05-25 08:35:34 +03:00
parent f1c8fb5b1b
commit 6f820b9dbf
No known key found for this signature in database
GPG Key ID: 46D62DD9F1DE636E
1 changed files with 1 additions and 1 deletions

2
kiss
View File

@ -1371,7 +1371,7 @@ args() {
#
# This handles the globbing characters '*', '!', '[' and ']' as per:
# https://pubs.opengroup.org/onlinepubs/009695399/utilities/xcu_chap02.html
[ "${action##[as]*}" ] && case $* in *\**|*\!*|*\[*|*\]*)
[ "${action##[as]*}" ] && case "$*" in *\**|*\!*|*\[*|*\]*)
die "Arguments contain invalid characters: '!*[]' ($*)"
esac