From 52ba523579703be726418d11239eb3a0888f6771 Mon Sep 17 00:00:00 2001 From: tw93 Date: Wed, 28 Jan 2026 19:07:08 +0800 Subject: [PATCH] fix(install): clear quarantine attribute after downloading binaries (#381) --- install.sh | 1 + 1 file changed, 1 insertion(+) diff --git a/install.sh b/install.sh index 6dc2cef..a75fe09 100755 --- a/install.sh +++ b/install.sh @@ -506,6 +506,7 @@ download_binary() { if curl -fsSL --connect-timeout 10 --max-time 60 -o "$target_path" "$url"; then if [[ -t 1 ]]; then stop_line_spinner; fi chmod +x "$target_path" + xattr -cr "$target_path" 2> /dev/null || true log_success "Downloaded ${binary_name} binary" else if [[ -t 1 ]]; then stop_line_spinner; fi