Skip to content

Commit

Permalink
fix MSI flag
Browse files Browse the repository at this point in the history
  • Loading branch information
EyalDelarea committed Sep 4, 2023
1 parent 688e693 commit 623cdbd
Showing 1 changed file with 4 additions and 3 deletions.
7 changes: 4 additions & 3 deletions xray/commands/audit/audit.go
Original file line number Diff line number Diff line change
Expand Up @@ -89,9 +89,10 @@ func (auditCmd *AuditCommand) SetPrintExtendedTable(printExtendedTable bool) *Au

func (auditCmd *AuditCommand) CreateXrayGraphScanParams() *scan.XrayGraphScanParams {
params := &scan.XrayGraphScanParams{
RepoPath: auditCmd.targetRepoPath,
Watches: auditCmd.watches,
ScanType: scan.Dependency,
RepoPath: auditCmd.targetRepoPath,
Watches: auditCmd.watches,
ScanType: scan.Dependency,
MultiScanId: os.Getenv(coreutils.MultiScanId),
}
if auditCmd.projectKey == "" {
params.ProjectKey = os.Getenv(coreutils.Project)
Expand Down

0 comments on commit 623cdbd

Please sign in to comment.