Tweak log wording

This commit is contained in:
Henry Mercer 2024-12-03 17:59:45 +00:00
parent b2a4442810
commit 93f3303766
3 changed files with 3 additions and 3 deletions

2
lib/tools-download.js generated
View file

@ -123,7 +123,7 @@ function getToolcacheDirectory(version) {
function writeToolcacheMarkerFile(extractedPath, logger) {
const markerFilePath = `${extractedPath}.complete`;
fs.writeFileSync(markerFilePath, "");
logger.info(`Wrote toolcache marker file to ${markerFilePath}`);
logger.info(`Created toolcache marker file ${markerFilePath}`);
}
function sanitizeUrlForStatusReport(url) {
return ["github/codeql-action", "dsp-testing/codeql-cli-nightlies"].some((repo) => url.startsWith(`https://github.com/${repo}/releases/download/`))