From 7d89a367c5ba0609033604397eb1bfee0480bfef Mon Sep 17 00:00:00 2001 From: rootzoll Date: Tue, 7 Jan 2025 20:51:00 +0100 Subject: [PATCH] fix warnings --- home.admin/config.scripts/blitz.data.sh | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/home.admin/config.scripts/blitz.data.sh b/home.admin/config.scripts/blitz.data.sh index 5f6a3862f..d6646b9bb 100644 --- a/home.admin/config.scripts/blitz.data.sh +++ b/home.admin/config.scripts/blitz.data.sh @@ -385,24 +385,24 @@ if [ "$1" = "status" ]; then # STORAGE if [ ${#storageDevice} -gt 0 ]; then if [ ${storageSizeGB} -lt $((storageFullMinGB - 1)) ]; then - echo "storageWarning='only-pruned'" + storageWarning='only-pruned' fi if [ ${storageSizeGB} -lt $((storagePrunedMinGB - 1)) ]; then - echo "storageWarning='too-small'" + storageWarning='too-small' fi fi # SYSTEM if [ ${#systemDevice} -gt 0 ]; then if [ ${systemSizeGB} -lt $((systemMinGB - 1)) ]; then - echo "systemWarning='too-small'" + systemWarning='too-small' fi fi # DATA if [ ${#dataDevice} -gt 0 ]; then if [ ${dataSizeGB} -lt $((dataMinGB - 1)) ]; then - echo "dataWarning='too-small'" + dataWarning='too-small' fi fi