This commit is contained in:
deathbybandaid 2023-12-17 10:38:51 -05:00
parent 54556d6d46
commit 26cb29381b

View File

@ -108,9 +108,9 @@ is_shared_lib_present() {
if ! ldconfig -p | grep $libtocheck if ! ldconfig -p | grep $libtocheck
then then
printf "$COL_YELLOW" "$libtocheck is not installed" printf "$COL_YELLOW" "$libtocheck is not installed"
return 0 return 1
else else
printf "$COL_YELLOW" "$libtocheck is installed" printf "$COL_YELLOW" "$libtocheck is installed"
return 1 return 0
fi fi
} }