From 1c66f1f9ccf7c1c077a0fa064dc0770b29a24a6b Mon Sep 17 00:00:00 2001 From: Claude Date: Sun, 19 Apr 2026 13:54:43 +0000 Subject: [PATCH] fix(updater): align notify hint with actual update command The notify-only auto-update path told users to run 'openboot update --self', but no --self flag exists on the update command. Use the real invocation: 'openboot update'. --- internal/updater/updater.go | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/internal/updater/updater.go b/internal/updater/updater.go index cb0bf4f..f76c9f0 100644 --- a/internal/updater/updater.go +++ b/internal/updater/updater.go @@ -183,7 +183,7 @@ func notifyUpdate(currentVersion, latestVersion string) { if IsHomebrewInstall() { ui.Muted("Run 'brew upgrade openboot' to upgrade") } else { - ui.Muted("Run 'openboot update --self' to upgrade") + ui.Muted("Run 'openboot update' to upgrade") } fmt.Println() } @@ -239,7 +239,7 @@ func doDirectUpgrade(currentVersion, latestVersion string) { ui.Info(fmt.Sprintf("Updating OpenBoot v%s → v%s...", currentClean, latestClean)) if err := DownloadAndReplace(latestVersion, currentVersion); err != nil { ui.Warn(fmt.Sprintf("Auto-update failed: %v", err)) - ui.Muted("Run 'openboot update --self' to update manually") + ui.Muted("Run 'openboot update' to update manually") fmt.Println() return }