mirror of
https://github.com/lukaszraczylo/filepuff-mcp.git
synced 2026-06-14 02:51:27 +00:00
feat(release): drop darwin_amd64 (Intel Macs) (#15)
Intel Macs are no longer receiving macOS updates. Drop from release matrix and re-add to goreleaser ignore list. install.sh now prints a clear message pointing Intel users to build-from-source. README manual-install section no longer advertises a darwin_amd64 URL.
This commit is contained in:
@@ -59,6 +59,15 @@ detect_platform() {
|
||||
;;
|
||||
esac
|
||||
|
||||
# Intel Macs are no longer receiving macOS updates; we only ship Apple
|
||||
# Silicon builds. Users on older hardware can build from source.
|
||||
if [ "$os" = "darwin" ] && [ "$arch" = "amd64" ]; then
|
||||
print_error "macOS Intel (x86_64) is no longer supported."
|
||||
print_error "Apple Silicon binaries are available; for Intel, build from source:"
|
||||
print_error " https://github.com/lukaszraczylo/filepuff-mcp#build-from-source"
|
||||
exit 1
|
||||
fi
|
||||
|
||||
echo "${os}_${arch}"
|
||||
}
|
||||
|
||||
|
||||
Reference in New Issue
Block a user