Commit 013a03b
authored
fix: set universal_binaries name_template to match build binary name (#203)
## What
Set the name_template field on universal_binaries in .goreleaser.yaml to "pvtr" so the macOS universal binary matches the configured build binary name.
## Why
The universal_binaries name_template defaults to {{ .ProjectName }}, which resolves to the repo name "privateer". With replace: true, this overwrites the correctly named "pvtr" binary with one named "privateer", causing brew install to fail with ENOENT since the formula expects "pvtr".
## Notes
- A new release must be cut after this merges for the homebrew formula to work
- The archive filenames will still use "privateer" (e.g., privateer_Darwin_all.tar.gz) since ProjectName is unchanged — only the binary inside is affected
Signed-off-by: jmeridth <jmeridth@gmail.com>1 parent d6147b7 commit 013a03b
1 file changed
+3
-0
lines changed| Original file line number | Diff line number | Diff line change | |
|---|---|---|---|
| |||
69 | 69 | | |
70 | 70 | | |
71 | 71 | | |
| 72 | + | |
| 73 | + | |
| 74 | + | |
0 commit comments