Skip to content

Commit 9c13cd4

Browse files
FelixIsaacclaude
andcommitted
docs: fix installation instructions, remove non-existent Homebrew/Scoop
- Removed Homebrew tap installation (felixisaac/homebrew-tap doesn't exist) - Removed Scoop bucket installation (felixisaac/scoop-bucket doesn't exist) - Added working curl-based installation for Linux/macOS - Added PowerShell one-liner for Windows - Removed brews and scoops sections from .goreleaser.yaml All installation methods now work with existing GitHub releases. 🤖 Generated with [Claude Code](https://claude.com/claude-code) Co-Authored-By: Claude Sonnet 4.5 <noreply@anthropic.com>
1 parent 346341d commit 9c13cd4

2 files changed

Lines changed: 25 additions & 40 deletions

File tree

.goreleaser.yaml

Lines changed: 0 additions & 21 deletions
Original file line numberDiff line numberDiff line change
@@ -46,27 +46,6 @@ changelog:
4646
- Merge pull request
4747
- Merge branch
4848

49-
brews:
50-
- repository:
51-
owner: felixisaac
52-
name: homebrew-tap
53-
directory: Formula
54-
homepage: https://github.com/felixisaac/claude-code-sync
55-
description: Sync Claude Code configs across machines via GitHub with age encryption
56-
license: MIT
57-
install: |
58-
bin.install "claude-code-sync"
59-
test: |
60-
system "#{bin}/claude-code-sync", "version"
61-
62-
scoops:
63-
- repository:
64-
owner: felixisaac
65-
name: scoop-bucket
66-
homepage: https://github.com/felixisaac/claude-code-sync
67-
description: Sync Claude Code configs across machines via GitHub with age encryption
68-
license: MIT
69-
7049
release:
7150
github:
7251
owner: felixisaac

README.md

Lines changed: 25 additions & 19 deletions
Original file line numberDiff line numberDiff line change
@@ -81,25 +81,38 @@ If you use [Claude Code](https://claude.com/claude-code) across multiple machine
8181

8282
## Installation
8383

84-
### macOS (Homebrew)
84+
### Linux
8585

8686
```bash
87-
brew install felixisaac/tap/claude-code-sync
87+
# Download and install (adjust arch: amd64 or arm64)
88+
curl -sL https://github.com/felixisaac/claude-code-sync/releases/latest/download/claude-code-sync_linux_amd64.tar.gz | tar xz
89+
sudo mv claude-code-sync /usr/local/bin/
8890
```
8991

90-
### Windows (Scoop)
92+
### macOS
9193

92-
```powershell
93-
scoop bucket add felixisaac https://github.com/felixisaac/scoop-bucket
94-
scoop install claude-code-sync
94+
```bash
95+
# Download and install (adjust arch: amd64 or arm64)
96+
curl -sL https://github.com/felixisaac/claude-code-sync/releases/latest/download/claude-code-sync_darwin_amd64.tar.gz | tar xz
97+
sudo mv claude-code-sync /usr/local/bin/
9598
```
9699

97-
### Linux (Manual)
100+
### Windows
98101

99-
```bash
100-
# Download latest release (adjust arch: amd64 or arm64)
101-
curl -sL https://github.com/felixisaac/claude-code-sync/releases/latest/download/claude-code-sync_linux_amd64.tar.gz | tar xz
102-
sudo mv claude-code-sync /usr/local/bin/
102+
**Option 1: Download binary**
103+
104+
Download `claude-code-sync_windows_amd64.zip` from [GitHub Releases](https://github.com/felixisaac/claude-code-sync/releases/latest), extract, and add to PATH.
105+
106+
**Option 2: PowerShell one-liner**
107+
108+
```powershell
109+
# Download to ~/.local/bin (add to PATH if needed)
110+
$uri = "https://github.com/felixisaac/claude-code-sync/releases/latest/download/claude-code-sync_windows_amd64.zip"
111+
$dest = "$env:USERPROFILE\.local\bin"
112+
New-Item -ItemType Directory -Force -Path $dest | Out-Null
113+
Invoke-WebRequest -Uri $uri -OutFile "$env:TEMP\claude-code-sync.zip"
114+
Expand-Archive -Path "$env:TEMP\claude-code-sync.zip" -DestinationPath $dest -Force
115+
Remove-Item "$env:TEMP\claude-code-sync.zip"
103116
```
104117

105118
### Go
@@ -108,20 +121,13 @@ sudo mv claude-code-sync /usr/local/bin/
108121
go install github.com/felixisaac/claude-code-sync/cmd/claude-code-sync@latest
109122
```
110123

111-
### Manual
112-
113-
Download the latest binary from [GitHub Releases](https://github.com/felixisaac/claude-code-sync/releases).
114-
115124
### Updating
116125

117126
```bash
118127
# Check for updates
119128
claude-code-sync check-update
120129

121-
# Update via package manager
122-
brew upgrade claude-code-sync # macOS
123-
scoop update claude-code-sync # Windows
124-
130+
# Re-run installation command for your platform
125131
# Or download latest from GitHub Releases
126132
```
127133

0 commit comments

Comments
 (0)