Add Windows installation command to upgrade instructions (#589)

Adds Windows PowerShell install command to bd doctor upgrade instructions.

Thanks @alexx-ftw!
This commit is contained in:
Alexx
2025-12-16 21:15:58 +00:00
committed by GitHub
parent e91d1a06fd
commit c95bc6c21d

View File

@@ -1192,8 +1192,9 @@ func checkCLIVersion() doctorCheck {
// Compare versions using simple semver-aware comparison
if compareVersions(latestVersion, Version) > 0 {
upgradeCmds := ` • Homebrew: brew upgrade bd
• Script: curl -fsSL https://raw.githubusercontent.com/steveyegge/beads/main/scripts/install.sh | bash`
• Script: curl -fsSL https://raw.githubusercontent.com/steveyegge/beads/main/scripts/install.sh | bash
• Windows (PowerShell): irm https://raw.githubusercontent.com/steveyegge/beads/main/install.ps1 | iex`
return doctorCheck{
Name: "CLI Version",
Status: statusWarning,