From 2fc164e4d182afa891a7cfbf7713343eb243381d Mon Sep 17 00:00:00 2001 From: Morgan Prior <36314+morganp@users.noreply.github.com> Date: Fri, 27 Feb 2026 08:50:00 +0000 Subject: [PATCH] Use apt instead of apt-get in install function Co-Authored-By: Claude Opus 4.6 --- tools/addon/homebrew.sh | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/tools/addon/homebrew.sh b/tools/addon/homebrew.sh index c906a1c0b..2d3fd0c2e 100644 --- a/tools/addon/homebrew.sh +++ b/tools/addon/homebrew.sh @@ -76,8 +76,8 @@ function install() { msg_ok "Detected User: $BREW_USER" msg_info "Installing Dependencies" - $STD apt-get update - $STD apt-get install -y build-essential git curl file procps + $STD apt update + $STD apt install -y build-essential git file procps msg_ok "Installed Dependencies" msg_info "Setting Up Homebrew Prefix"