From 8e2fd081a5f5df22e7bcabf892ca4db593356d57 Mon Sep 17 00:00:00 2001 From: deathbybandaid Date: Sun, 17 Dec 2023 11:27:15 -0500 Subject: [PATCH] test --- 110-Cleanup.sh | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/110-Cleanup.sh b/110-Cleanup.sh index 58cffc5..9829c18 100644 --- a/110-Cleanup.sh +++ b/110-Cleanup.sh @@ -7,11 +7,11 @@ source "$SCRIPTDIR/common/functions.sh" source "$SCRIPTDIR/common/load-defaults.sh" printf "$COL_LIGHT_BLUE" "* Cleaning up system" -prespace=`get_system_used_space` +prespace=$(echo get_system_used_space) prespacewords=`human_readable_bytes $prespace` printf "$COL_LIGHT_BLUE" "* Current used space is $prespacewords" pkgmgr_clean -postspace=`get_system_used_space` +postspace=$(echo get_system_used_space) postspacewords=`human_readable_bytes $prespace` printf "$COL_LIGHT_BLUE" "* Current used space is now $postspacewords"