From 07c7cc7eea0413920f551c8f89645860a060800e Mon Sep 17 00:00:00 2001 From: Or Geva Date: Wed, 9 Aug 2023 10:02:33 +0300 Subject: [PATCH] Enable SSO login cmd (#2121) --- docs/general/login/help.go | 2 +- main.go | 1 - 2 files changed, 1 insertion(+), 2 deletions(-) diff --git a/docs/general/login/help.go b/docs/general/login/help.go index 2b5a82c06..c2b4a8750 100644 --- a/docs/general/login/help.go +++ b/docs/general/login/help.go @@ -3,5 +3,5 @@ package login var Usage = []string{"login"} func GetDescription() string { - return "Log in to a JFrog Platform via your web browser. Available for Artifactory 7.63.1 and above" + return "Log in to a JFrog Platform via your web browser. Available for Artifactory 7.64.0 and above" } diff --git a/main.go b/main.go index 7f8dcd7b8..7304e0906 100644 --- a/main.go +++ b/main.go @@ -275,7 +275,6 @@ func getCommands() []cli.Command { BashComplete: corecommon.CreateBashCompletionFunc(), Category: otherCategory, Action: login.LoginCmd, - Hidden: true, // TODO remove when Artifactory 7.63.1 is released to self-hosted }, } allCommands := append(slices.Clone(cliNameSpaces), utils.GetPlugins()...)