From 6129e500bd1c8f1ec6f54812457f699b85986d38 Mon Sep 17 00:00:00 2001 From: Kroese Date: Fri, 7 Aug 2026 05:57:52 +0200 Subject: [PATCH] fix: Propagate insufficient memory errors (#2093) --- src/install.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/install.sh b/src/install.sh index 309b5ff7..a7c34a03 100644 --- a/src/install.sh +++ b/src/install.sh @@ -1322,7 +1322,7 @@ checkMemory() { RAM_MINIMUM="$required" name=$(printVersion "$id" "") || return 1 - checkMemoryRequirement "$name" + checkMemoryRequirement "$name" || return 1 return 0 }