Fix early return for no autobuild languages

This commit is contained in:
Henry Mercer
2025-05-30 18:11:05 +01:00
parent 1d22e8316c
commit a28197c30c
3 changed files with 3 additions and 3 deletions

View File

@@ -37,7 +37,7 @@ export async function determineAutobuildLanguages(
async (language) => await codeql.isTracedLanguage(language),
);
if (!autobuildLanguages) {
if (!autobuildLanguages.length) {
logger.info(
"None of the languages in this project require extra build steps",
);