From 5af012495bee66c4493708ef541b12c20f1d3fa1 Mon Sep 17 00:00:00 2001 From: deathbybandaid Date: Sun, 17 Dec 2023 11:41:08 -0500 Subject: [PATCH] test --- common/functions.sh | 2 -- 1 file changed, 2 deletions(-) diff --git a/common/functions.sh b/common/functions.sh index 9743264..1aa8a4f 100644 --- a/common/functions.sh +++ b/common/functions.sh @@ -80,8 +80,6 @@ get_system_used_space() { human_readable_bytes() { local spacebytes="$1" - printf "$COL_RED" "$1" - printf "$COL_RED" "$spacebytes" spacekb=`expr $spacebytes / 1024` spacemb=`expr $spacebytes / 1024 / 1024` spacegb=`expr $spacebytes / 1024 / 1024 / 1024`