Skip to content

Commit

Permalink
Adding Analyzer Manager env var to 'jf options' output (#2872)
Browse files Browse the repository at this point in the history
  • Loading branch information
eranturgeman authored Feb 27, 2025
1 parent 72485fc commit 144cca5
Showing 1 changed file with 8 additions and 4 deletions.
12 changes: 8 additions & 4 deletions docs/common/env.go
Original file line number Diff line number Diff line change
Expand Up @@ -95,10 +95,13 @@ const (
[Default: false]
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. `

JfrogCliCommandSummaryOutputDirectory = ` JFROG_CLI_COMMAND_SUMMARY_OUTPUT_DIR
JfrogCliCommandSummaryOutputDirectory = ` JFROG_CLI_COMMAND_SUMMARY_OUTPUT_DIR
Defines the directory path where the command summaries data is stored.
Every command will have its own individual directory within this base directory.
. `
Every command will have its own individual directory within this base directory.`

JfrogSecurityCliAnalyzerManagerVersion = ` JFROG_CLI_ANALYZER_MANAGER_VERSION
Specifies the version of Analyzer Manager to be used for security commands, provided in semantic versioning (e.g 1.13.4) format.
By default, the latest stable version is used. `
)

var (
Expand Down Expand Up @@ -138,7 +141,8 @@ func GetGlobalEnvVars() string {
JfrogCliFailNoOp,
JfrogCliEncryptionKey,
JfrogCliAvoidNewVersionWarning,
JfrogCliCommandSummaryOutputDirectory)
JfrogCliCommandSummaryOutputDirectory,
JfrogSecurityCliAnalyzerManagerVersion)
}

func CreateEnvVars(envVars ...string) string {
Expand Down

0 comments on commit 144cca5

Please sign in to comment.