1
0
mirror of https://github.com/pocketbase/pocketbase.git synced 2025-01-09 01:17:51 +02:00

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

View File

@ -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)
},
}
}