docs: update

This commit is contained in:
Dylan Araps 2019-11-25 23:43:25 +00:00
parent 8754909d32
commit 8f809abee9
No known key found for this signature in database
GPG Key ID: 46D62DD9F1DE636E
1 changed files with 3 additions and 0 deletions

View File

@ -111,6 +111,9 @@ glob() {
# for simple string comparisons against globs. # for simple string comparisons against globs.
# #
# Example: if glob "Hello World" '* World'; then # 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 case $1 in $2) return 0; esac; return 1
} }