removed the v prefix from the version command

This commit is contained in:
Gani Georgiev
2022-07-11 10:30:34 +03:00
parent 0c14f32822
commit ed741662b2
+1 -1
View File
@@ -15,7 +15,7 @@ func NewVersionCommand(app core.App, version string) *cobra.Command {
Use: "version", Use: "version",
Short: "Prints the current PocketBase app version", Short: "Prints the current PocketBase app version",
Run: func(command *cobra.Command, args []string) { Run: func(command *cobra.Command, args []string) {
fmt.Printf("PocketBase v%s\n", version) fmt.Printf("PocketBase %s\n", version)
}, },
} }
} }