From 83d667a9fe7d124b9dab5f5c27ffd2fb8c1428fa Mon Sep 17 00:00:00 2001 From: Claude Date: Sun, 28 Dec 2025 05:17:24 +0000 Subject: [PATCH] chore: remove Windows support from build and docs Windows binaries were non-functional due to hardcoded `sh -c` shell execution. Remove Windows build target and installation instructions to avoid distributing broken binaries. Users on Windows can use WSL2. --- .goreleaser.yaml | 8 -------- README.md | 7 +------ 2 files changed, 1 insertion(+), 14 deletions(-) diff --git a/.goreleaser.yaml b/.goreleaser.yaml index e86d0d8..ff3958a 100644 --- a/.goreleaser.yaml +++ b/.goreleaser.yaml @@ -21,14 +21,9 @@ builds: goos: - linux - darwin - - windows goarch: - amd64 - arm64 - # Ignore specific platform combinations - ignore: - - goos: windows - goarch: arm64 ldflags: - -s -w - -X main.version={{.Version}} @@ -45,9 +40,6 @@ archives: {{- if eq .Arch "amd64" }}x86_64 {{- else if eq .Arch "386" }}i386 {{- else }}{{ .Arch }}{{ end }} - format_overrides: - - goos: windows - format: zip files: - LICENSE - README.md diff --git a/README.md b/README.md index 8e37bc4..32d92e9 100644 --- a/README.md +++ b/README.md @@ -57,12 +57,6 @@ sudo mv raptor /usr/local/bin/ raptor --version ``` -#### Windows (x86_64) - -1. Download [raptor_0.2.0_Windows_x86_64.zip](https://github.com/watany-dev/raptor/releases/download/v0.2.0/raptor_0.2.0_Windows_x86_64.zip) -2. Extract the ZIP file -3. Place `raptor.exe` in a directory in your PATH - ### Go install ```bash @@ -80,6 +74,7 @@ sudo mv raptor /usr/local/bin/ ### Requirements +- **Supported platforms**: Linux, macOS (Windows is not supported) - Runtime: Git 2.5 or later - Build from source only: Go 1.24 or later