From ea86be7b01958b40927d28155f8733af62c9ef7c Mon Sep 17 00:00:00 2001 From: trbernstein Date: Sat, 18 Oct 2025 23:22:59 +0200 Subject: [PATCH] Use brew caller script without sudo --- modules/05-install-brew-apps.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/modules/05-install-brew-apps.sh b/modules/05-install-brew-apps.sh index 9421aea..02a70da 100755 --- a/modules/05-install-brew-apps.sh +++ b/modules/05-install-brew-apps.sh @@ -4,7 +4,7 @@ function brewInstall() { local identifier="$1" local cask="${2:+--cask}" - HOME=/Users/Shared indicateActivity -- "Installing ${identifier}${cask:+ (Cask)}" sudo -u _homebrew ${homebrew_path} install -q ${cask} ${identifier} + HOME=/Users/Shared indicateActivity -- "Installing ${identifier}${cask:+ (Cask)}" ${homebrew_path} install -q ${cask} ${identifier} } function installCask() {