Skip to content

Commit

Permalink
add online csv mode
Browse files Browse the repository at this point in the history
  • Loading branch information
dterrybd committed Oct 14, 2024
1 parent 63bca11 commit 28d854c
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 28d854c

Please sign in to comment.