From c95bc6c21d3b0a868fb56c2819f2420944edfdc9 Mon Sep 17 00:00:00 2001 From: Alexx Date: Tue, 16 Dec 2025 21:15:58 +0000 Subject: [PATCH] Add Windows installation command to upgrade instructions (#589) Adds Windows PowerShell install command to bd doctor upgrade instructions. Thanks @alexx-ftw! --- cmd/bd/doctor.go | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/cmd/bd/doctor.go b/cmd/bd/doctor.go index bfe20f33..1b29d161 100644 --- a/cmd/bd/doctor.go +++ b/cmd/bd/doctor.go @@ -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,