From ae120c1e233093739eeef6952178e786211c1c76 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?H=C3=A5vard=20Gj=C3=B8by=20Thom?= <34199185+havardthom@users.noreply.github.com> Date: Sat, 7 Dec 2024 22:42:40 +0100 Subject: [PATCH] Fix broken build.func (#736) --- misc/build.func | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/misc/build.func b/misc/build.func index 3bd4aa02..17a87765 100644 --- a/misc/build.func +++ b/misc/build.func @@ -504,7 +504,7 @@ install_script() { check_container_resources() { # Check actual RAM & Cores - current_ram=$free -m | awk 'NR==2{print $2}') + current_ram=$(free -m | awk 'NR==2{print $2}') current_cpu=$(nproc) # Check whether the current RAM is less than the required RAM or the CPU cores are less than required