From ed741662b2b38c1597ec387fc0161f990cad4dbd Mon Sep 17 00:00:00 2001 From: Gani Georgiev Date: Mon, 11 Jul 2022 10:30:34 +0300 Subject: [PATCH] removed the v prefix from the version command --- cmd/version.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/cmd/version.go b/cmd/version.go index 988179e4..7156ef02 100644 --- a/cmd/version.go +++ b/cmd/version.go @@ -15,7 +15,7 @@ func NewVersionCommand(app core.App, version string) *cobra.Command { Use: "version", Short: "Prints the current PocketBase app version", Run: func(command *cobra.Command, args []string) { - fmt.Printf("PocketBase v%s\n", version) + fmt.Printf("PocketBase %s\n", version) }, } }