Skip to content

Commit

Permalink
fix: do not assume location of results directories for reporting
Browse files Browse the repository at this point in the history
  • Loading branch information
remie committed Dec 12, 2024
1 parent 35e1fe8 commit cae0746
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/apt/helpers/generateScalabilityReport.ts
Original file line number Diff line number Diff line change
Expand Up @@ -100,7 +100,7 @@ ${humanReadableOutput}
const reportBaseDir = await getReportDirectory(cwd, options.force);

// Generate the actual report
await scalabilityReport(cwd, join(options.outputDir, options.resultsDir1), join(options.outputDir, options.resultsDir2), join(options.outputDir, options.resultsDir3));
await scalabilityReport(cwd, options.resultsDir1, options.resultsDir2, options.resultsDir3);

// Get the report directory
const reportDir = getReport(reportBaseDir, 'scalability');
Expand Down

0 comments on commit cae0746

Please sign in to comment.