Skip to content
Closed
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 6 additions & 0 deletions main.go
Original file line number Diff line number Diff line change
Expand Up @@ -18,6 +18,7 @@
coreconfig "github.com/jfrog/jfrog-cli-core/v2/utils/config"
"github.com/jfrog/jfrog-cli-core/v2/utils/coreutils"
"github.com/jfrog/jfrog-cli-core/v2/utils/log"
evidenceCLI "github.com/jfrog/jfrog-cli-evidence/evidence/cli"

Check failure on line 21 in main.go

View workflow job for this annotation

GitHub Actions / Script tests (ubuntu-22.04)

no required module provides package github.com/jfrog/jfrog-cli-evidence/evidence/cli; to add it:

Check failure on line 21 in main.go

View workflow job for this annotation

GitHub Actions / Script tests (macos-13)

no required module provides package github.com/jfrog/jfrog-cli-evidence/evidence/cli; to add it:

Check failure on line 21 in main.go

View workflow job for this annotation

GitHub Actions / Script tests (ubuntu-latest)

no required module provides package github.com/jfrog/jfrog-cli-evidence/evidence/cli; to add it:

Check failure on line 21 in main.go

View workflow job for this annotation

GitHub Actions / Lint ubuntu

no required module provides package github.com/jfrog/jfrog-cli-evidence/evidence/cli; to add it:

Check failure on line 21 in main.go

View workflow job for this annotation

GitHub Actions / Script tests (windows-latest)

no required module provides package github.com/jfrog/jfrog-cli-evidence/evidence/cli; to add it:

Check failure on line 21 in main.go

View workflow job for this annotation

GitHub Actions / Lint windows

no required module provides package github.com/jfrog/jfrog-cli-evidence/evidence/cli; to add it:

Check failure on line 21 in main.go

View workflow job for this annotation

GitHub Actions / Lint macos

no required module provides package github.com/jfrog/jfrog-cli-evidence/evidence/cli; to add it:

Check failure on line 21 in main.go

View workflow job for this annotation

GitHub Actions / Script tests (macos-latest)

no required module provides package github.com/jfrog/jfrog-cli-evidence/evidence/cli; to add it:
platformServicesCLI "github.com/jfrog/jfrog-cli-platform-services/cli"
securityCLI "github.com/jfrog/jfrog-cli-security/cli"
"github.com/jfrog/jfrog-cli/artifactory"
Expand Down Expand Up @@ -525,13 +526,18 @@
if err != nil {
return nil, err
}
evidenceCmds, err := ConvertEmbeddedPlugin(evidenceCLI.GetJfrogCliEvidenceApp())
if err != nil {
return nil, err
}
platformServicesCmds, err := ConvertEmbeddedPlugin(platformServicesCLI.GetPlatformServicesApp())
if err != nil {
return nil, err
}

allCommands := append(slices.Clone(cliNameSpaces), securityCmds...)
allCommands = mergeCommands(allCommands, artifactoryCmds)
allCommands = mergeCommands(allCommands, evidenceCmds)
allCommands = append(allCommands, platformServicesCmds...)
allCommands = append(allCommands, utils.GetPlugins()...)
allCommands = append(allCommands, buildtools.GetCommands()...)
Expand Down
Loading