From 37fa64c5b9e27ba4e096b2356c4d0dbc9ae99b9a Mon Sep 17 00:00:00 2001 From: pvincent Date: Sat, 18 Jul 2026 01:28:10 +0400 Subject: [PATCH] lower case --- bin/miaou-bash | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/bin/miaou-bash b/bin/miaou-bash index 3062b6b..419a029 100755 --- a/bin/miaou-bash +++ b/bin/miaou-bash @@ -9,7 +9,7 @@ readonly MIAOU_BASH_ERROR MIAOU_BASH_DEBUG # FUNCTIONS function is_true { - [[ "${1,,}" =~ ^(true|yes|1)$ ]] + [[ "${1,,}" =~ ^(true|yes|1)$ ]] #${1,,} => Lowercase all chars } # overridden function which permits backtracing of original `return` statement