Allow '[' and ']' for kiss owns

Allow commands like `kiss own /usr/bin/\[` to succeed
This commit is contained in:
Arthur Williams 2020-11-07 04:19:24 -06:00
parent 1ae8340e49
commit 7df30fd9df
1 changed files with 1 additions and 1 deletions

2
kiss
View File

@ -1441,7 +1441,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##[aos]*}" ] && case "$*" in *\**|*\!*|*\[*|*\]*)
die "Arguments contain invalid characters: '!*[]' ($*)"
esac