From eb6e423ab99de05e10900f472bce6933b14974b7 Mon Sep 17 00:00:00 2001 From: Philip Zeyliger Date: Wed, 7 Jan 2026 13:15:56 -0800 Subject: [PATCH] goreleaser: fix homebrew_casks hooks structure MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit - Change hooks.post_install to hooks.post.install per GoReleaser v2 schema - Use system_command with args array instead of system with inline args 🤖 Generated with [Claude Code](https://claude.com/claude-code) Co-Authored-By: Claude --- .goreleaser.yml | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/.goreleaser.yml b/.goreleaser.yml index 227a77ded8861c40a609e850bb1cadd80569d778..f6f4817b9f81da72f56002270b4d00f0e2d978b2 100644 --- a/.goreleaser.yml +++ b/.goreleaser.yml @@ -62,5 +62,6 @@ homebrew_casks: homepage: https://github.com/boldsoftware/shelley description: "A mobile-friendly, web-based, multi-modal coding agent" hooks: - post_install: | - system "xattr", "-dr", "com.apple.quarantine", "#{caskroom_path}" + post: + install: | + system_command "/usr/bin/xattr", args: ["-dr", "com.apple.quarantine", "#{caskroom_path}"]