From 68c3fc92742d5b48ed948b3827402c7ccd5ccaf5 Mon Sep 17 00:00:00 2001 From: Owen Date: Tue, 8 Sep 2026 17:36:06 -0400 Subject: [PATCH] Show the update command instead of the release url --- updates/updates.go | 6 +----- 1 file changed, 1 insertion(+), 5 deletions(-) diff --git a/updates/updates.go b/updates/updates.go index 10bf38e..b3fa423 100644 --- a/updates/updates.go +++ b/updates/updates.go @@ -133,11 +133,7 @@ func CheckForUpdate(owner, repo, currentVersion string) error { // Check if update is available if currentVer.isNewer(latestVer) { - releaseNotes := componentVersion.ReleaseNotes - if releaseNotes == "" { - releaseNotes = "curl -fsSL https://static.pangolin.net/get-newt.sh | bash" - } - printUpdateBanner(currentVer.String(), latestVer.String(), releaseNotes) + printUpdateBanner(currentVer.String(), latestVer.String(), "curl -fsSL https://static.pangolin.net/get-newt.sh | bash") } return nil