From 3b4724cf865fca05f642e3b15f7cd2ad1f2ebef6 Mon Sep 17 00:00:00 2001 From: Lukas Greve Date: Sun, 15 Jun 2025 14:30:48 +0200 Subject: [PATCH] Removing information to the user when script goes through. --- scripts/system-memory.sh | 4 +--- 1 file changed, 1 insertion(+), 3 deletions(-) diff --git a/scripts/system-memory.sh b/scripts/system-memory.sh index b203295..af46db8 100755 --- a/scripts/system-memory.sh +++ b/scripts/system-memory.sh @@ -9,6 +9,4 @@ total_memory_mb=$(( total_memory / 1024 )) if [[ "$total_memory_mb" -lt "4096" ]]; then echo "Not enough RAM: The system has only ${total_memory_mb}MiB of RAM, but at least 4096 is required." exit 1 -else - echo "Sufficient memory available. System has ${total_memory_mb}MiB of RAM." -fi +fi \ No newline at end of file