From 65c8827e2000ab91f624c7e71cd43744d34973c4 Mon Sep 17 00:00:00 2001 From: Chris Koeritz Date: Thu, 29 Jul 2021 16:55:47 -0400 Subject: [PATCH] enabling case insensitive package searches --- scripts/system/list_packages.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/scripts/system/list_packages.sh b/scripts/system/list_packages.sh index 0a52aa64..d7317fbb 100644 --- a/scripts/system/list_packages.sh +++ b/scripts/system/list_packages.sh @@ -8,7 +8,7 @@ if [ -z "$*" ]; then else # we know the parameters are not empty, so we don't go with our # wildcard approach for listing the package names. - SEEK_PIECE=' grep $* ' + SEEK_PIECE=' grep -i $* ' fi if debian_like; then -- 2.34.1