Fix style inconsistency

This commit is contained in:
Michael B. Gale
2025-10-22 12:04:04 +01:00
parent aa048acb05
commit 02b2c3aafc
2 changed files with 6 additions and 6 deletions

View File

@@ -445,9 +445,9 @@ async function run() {
}
if (
runStats &&
uploadResults &&
uploadResults[analyses.AnalysisKind.CodeScanning]
runStats !== undefined &&
uploadResults !== undefined &&
uploadResults[analyses.AnalysisKind.CodeScanning] !== undefined
) {
await sendStatusReport(
startedAt,
@@ -464,7 +464,7 @@ async function run() {
dependencyCacheResults,
logger,
);
} else if (runStats) {
} else if (runStats !== undefined) {
await sendStatusReport(
startedAt,
config,