Update RELEASING.md with generic instructions for removing old go install binaries

This commit is contained in:
Steve Yegge
2025-10-23 23:52:31 -07:00
parent f30544e148
commit 6c120f436b
+12 -3
View File
@@ -137,10 +137,19 @@ brew upgrade bd # Or: brew reinstall bd
bd version # Verify it shows new version bd version # Verify it shows new version
``` ```
**Note:** If you have `~/go/bin/bd` from `go install`, remove it to avoid conflicts: **Note:** If you have an old bd binary from `go install` in your PATH, remove it to avoid conflicts:
```bash ```bash
rm ~/go/bin/bd # Clear go install version # Find where bd is installed
which bd # Should show /opt/homebrew/bin/bd which bd
# If it's in a Go toolchain path (e.g., ~/go/bin/bd or mise-managed Go), remove it
# Common locations:
rm ~/go/bin/bd # Standard go install location
rm ~/.local/share/mise/installs/go/*/bin/bd # mise-managed Go installs
# Verify you're using the correct version
which bd # Should show /opt/homebrew/bin/bd or your package manager's path
bd version # Should show the latest version
``` ```
### 4. GitHub Releases (Automated) ### 4. GitHub Releases (Automated)