From 8bca66a7bb7ac06ca2a75beb4ddc65e6653743c0 Mon Sep 17 00:00:00 2001 From: trbernstein Date: Sat, 18 Oct 2025 17:24:34 +0200 Subject: [PATCH] Fix logical error regarding user id of _homebrew --- modules/04-install-brew.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/modules/04-install-brew.sh b/modules/04-install-brew.sh index f66cbe7..5ecaf4a 100755 --- a/modules/04-install-brew.sh +++ b/modules/04-install-brew.sh @@ -45,7 +45,7 @@ function getFirstFreeRoleAccountID() { local minUserID=450 local maxUserID=499 local uname_machine=$(/usr/bin/uname -m) - if [[ ${uname_machine} == "arm64" ]]; then + if [[ ${uname_machine} != "arm64" ]]; then minUserID=200 maxUserID=400 fi