Skip to content

Commit

Permalink
Merge pull request #448 from blackducksoftware/dev/dterry/IDETECT-437…
Browse files Browse the repository at this point in the history
…3-add-online-csv-option

add online csv mode
  • Loading branch information
dterrybd authored Dec 18, 2024
2 parents 2317fb3 + 28d854c commit 665fb8c
Showing 1 changed file with 5 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -122,7 +122,11 @@ public List<String> createCommandForProcessBuilder(IntLogger logger, ScanPaths s
}

if (csvArchive) {
appendKeyValuePair("--outputFormat", "csv");
if (dryRun) {
appendKeyValuePair("--outputFormat", "csv");
} else {
appendSingleArgument("--upload-csv");
}
}

appendKeyValuePair("--logDir", specificRunOutputDirectoryPath);
Expand Down

0 comments on commit 665fb8c

Please sign in to comment.