cli: remove Edition in version command, which contains duplicate info

This commit is contained in:
Thomas Tendyck 2023-03-10 11:03:25 +01:00 committed by Thomas Tendyck
parent 593253e090
commit 64e1f553d1
3 changed files with 0 additions and 7 deletions

View File

@ -36,7 +36,6 @@ func runVersion(cmd *cobra.Command, args []string) {
}
cmd.Printf("Version:\t%s (%s)\n", constants.VersionInfo(), constants.VersionBuild)
cmd.Printf("Edition:\t%s\n", constants.Edition)
cmd.Printf("GitCommit:\t%s\n", commit)
cmd.Printf("GitTreeState:\t%s\n", state)
cmd.Printf("BuildDate:\t%s\n", date)

View File

@ -17,6 +17,3 @@ JmEe5iSLvG1SyQSAew7WdMKF6o9t8e2TFuCkzlOhhlws2OHWbiFZnFWCFw==
// VersionBuild is the category of the current build.
const VersionBuild = "Enterprise build; see documentation for license agreement"
// Edition is the edition of the CLI.
const Edition = "Enterprise"

View File

@ -17,6 +17,3 @@ b92PDCpM7FZAINQF88s1TZS/HmRXYk62UJ4eqPduvUnJmXhNikhLbMi6fw==
// VersionBuild is the category of the current build.
const VersionBuild = "Open-source software build; AGPL-3.0-only applies"
// Edition is the edition of the CLI.
const Edition = "Community"