Address review comments

This commit is contained in:
Henry Mercer 2023-01-16 10:14:35 +00:00
parent 115587a52c
commit b660a383cf
3 changed files with 3 additions and 3 deletions

2
lib/setup-codeql.js generated
View file

@ -142,7 +142,7 @@ async function tryFindCliVersionDotcomOnly(tagName, logger) {
return tryGetCodeQLCliVersionForRelease(release.data, logger);
}
catch (e) {
logger.debug(`Failed to find the CLI version for the CodeQL bundle tagged ${tagName}. Error: ${e instanceof Error ? e.message : e}`);
logger.debug(`Failed to find the CLI version for the CodeQL bundle tagged ${tagName}. ${e instanceof Error ? e.message : e}`);
return undefined;
}
}

File diff suppressed because one or more lines are too long

View file

@ -154,7 +154,7 @@ export async function tryFindCliVersionDotcomOnly(
return tryGetCodeQLCliVersionForRelease(release.data, logger);
} catch (e) {
logger.debug(
`Failed to find the CLI version for the CodeQL bundle tagged ${tagName}. Error: ${
`Failed to find the CLI version for the CodeQL bundle tagged ${tagName}. ${
e instanceof Error ? e.message : e
}`
);