From 6155e6426a908dd49ceb99348a6db79a7e2cd912 Mon Sep 17 00:00:00 2001 From: Gani Georgiev Date: Sat, 13 Jan 2024 11:21:55 +0200 Subject: [PATCH] ghupdate messages update --- plugins/ghupdate/ghupdate.go | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/plugins/ghupdate/ghupdate.go b/plugins/ghupdate/ghupdate.go index ca48028c..1c3d3bd8 100644 --- a/plugins/ghupdate/ghupdate.go +++ b/plugins/ghupdate/ghupdate.go @@ -106,7 +106,7 @@ func (p *plugin) updateCmd() *cobra.Command { command := &cobra.Command{ Use: "update", - Short: "Automatically updates the current PocketBase executable with the latest available version", + Short: "Automatically updates the current app executable with the latest available version", SilenceUsage: true, RunE: func(command *cobra.Command, args []string) error { var needConfirm bool @@ -160,7 +160,7 @@ func (p *plugin) update(withBackup bool) error { } if compareVersions(strings.TrimPrefix(p.currentVersion, "v"), strings.TrimPrefix(latest.Tag, "v")) <= 0 { - color.Green("You already have the latest PocketBase %s.", p.currentVersion) + color.Green("You already have the latest version %s.", p.currentVersion) return nil }