[#1] Fix version output for all compiled binaries

Signed-off-by: Alex Vanin <a.vanin@yadro.com>
This commit is contained in:
Alexey Vanin 2023-01-27 13:41:03 +03:00 committed by fyrchik
parent 89a0266f5e
commit 406ff1360f
5 changed files with 5 additions and 5 deletions

View file

@ -52,7 +52,7 @@ func Execute() error {
func entryPoint(cmd *cobra.Command, args []string) error {
printVersion, _ := cmd.Flags().GetBool("version")
if printVersion {
cmd.Print(misc.BuildInfo("NeoFS Adm"))
cmd.Print(misc.BuildInfo("FrostFS Adm"))
return nil
}