From 26cb29381b2ee8ec7c0e05ff037458093f2e74a8 Mon Sep 17 00:00:00 2001 From: deathbybandaid Date: Sun, 17 Dec 2023 10:38:51 -0500 Subject: [PATCH] test --- common/functions.sh | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/common/functions.sh b/common/functions.sh index 11c3f9c..aadb86c 100644 --- a/common/functions.sh +++ b/common/functions.sh @@ -108,9 +108,9 @@ is_shared_lib_present() { if ! ldconfig -p | grep $libtocheck then printf "$COL_YELLOW" "$libtocheck is not installed" - return 0 + return 1 else printf "$COL_YELLOW" "$libtocheck is installed" - return 1 + return 0 fi }