From a181243c0059238b53367dd0c57ea016f4c8d8f4 Mon Sep 17 00:00:00 2001 From: Fr4nz D13trich Date: Sun, 21 Dec 2025 23:39:40 +0100 Subject: [PATCH] Clean up and refinements --- helium_helper.sh | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/helium_helper.sh b/helium_helper.sh index ec0638c..8f41ba1 100755 --- a/helium_helper.sh +++ b/helium_helper.sh @@ -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