Skip to content

Commit 144cca5

Browse files
authored
Adding Analyzer Manager env var to 'jf options' output (#2872)
1 parent 72485fc commit 144cca5

File tree

1 file changed

+8
-4
lines changed

1 file changed

+8
-4
lines changed

docs/common/env.go

Lines changed: 8 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -95,10 +95,13 @@ const (
9595
[Default: false]
9696
Set to true if you'd like to avoid checking the latest available JFrog CLI version and printing warning when it newer than the current one. `
9797

98-
JfrogCliCommandSummaryOutputDirectory = ` JFROG_CLI_COMMAND_SUMMARY_OUTPUT_DIR
98+
JfrogCliCommandSummaryOutputDirectory = ` JFROG_CLI_COMMAND_SUMMARY_OUTPUT_DIR
9999
Defines the directory path where the command summaries data is stored.
100-
Every command will have its own individual directory within this base directory.
101-
. `
100+
Every command will have its own individual directory within this base directory.`
101+
102+
JfrogSecurityCliAnalyzerManagerVersion = ` JFROG_CLI_ANALYZER_MANAGER_VERSION
103+
Specifies the version of Analyzer Manager to be used for security commands, provided in semantic versioning (e.g 1.13.4) format.
104+
By default, the latest stable version is used. `
102105
)
103106

104107
var (
@@ -138,7 +141,8 @@ func GetGlobalEnvVars() string {
138141
JfrogCliFailNoOp,
139142
JfrogCliEncryptionKey,
140143
JfrogCliAvoidNewVersionWarning,
141-
JfrogCliCommandSummaryOutputDirectory)
144+
JfrogCliCommandSummaryOutputDirectory,
145+
JfrogSecurityCliAnalyzerManagerVersion)
142146
}
143147

144148
func CreateEnvVars(envVars ...string) string {

0 commit comments

Comments
 (0)