From 8f809abee93cb4176de0255510c6dcb06fcb3b0d Mon Sep 17 00:00:00 2001 From: Dylan Araps Date: Mon, 25 Nov 2019 23:43:25 +0000 Subject: [PATCH] docs: update --- pash-posix | 3 +++ 1 file changed, 3 insertions(+) diff --git a/pash-posix b/pash-posix index bd7202f..d9388e5 100755 --- a/pash-posix +++ b/pash-posix @@ -111,6 +111,9 @@ glob() { # for simple string comparisons against globs. # # Example: if glob "Hello World" '* World'; then + # + # Disable this warning as it is the intended behavior. + # shellcheck disable=2254 case $1 in $2) return 0; esac; return 1 }