Clean up and refinements

This commit is contained in:
Fr4nz D13trich 2025-12-21 23:39:40 +01:00
parent f909883f57
commit a181243c00

View file

@ -30,7 +30,7 @@ cmd_query() {
local PACKAGE="$1"
if ! command -v "$PACKAGE" >/dev/null 2>&1 ; then
echo "$PACKAGE" >> $TMP/missingDeps
echo " - $PACKAGE" >> $TMP/missingDeps
fi
}
@ -46,7 +46,7 @@ dependency_check () {
if [ -f "$TMP/missingDeps" ] ; then
MISSING=$(cat $TMP/missingDeps)
echo -e "\n ${RED}Following dependencies are missing :\n\n${YEL}$MISSING\n\n ${CYN}Please install and re-run script !${CRS}"
echo -e "\n ${RED}Following dependencies are missing :\n\n${CRS}$MISSING\n\n ${CYN}Please install and re-run script !${CRS}"
exit_clean
exit