Skip to content

Commit

Permalink
Verify failed tasks
Browse files Browse the repository at this point in the history
  • Loading branch information
nbhoski committed Jul 18, 2024
1 parent c2587b0 commit 9dbef0e
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/buildSummary.ts
Original file line number Diff line number Diff line change
Expand Up @@ -43,7 +43,7 @@ export function processAndDisplayBuildSummary() {

const filePath: string = join(runnerTemp, `buildSummary${runId}.json`);
let taskSummaryTableRows;
if (!checkFileExistsSync(filePath)) {
if (checkFileExistsSync(filePath)) {
try {
const data = JSON.parse(readFileSync(filePath, { encoding: 'utf8' }));
taskSummaryTableRows = getBuildSummaryTable(data);
Expand Down

0 comments on commit 9dbef0e

Please sign in to comment.