Rename makeGlobber parameter

This commit is contained in:
Michael B. Gale 2024-07-26 13:25:26 +01:00
parent f0bcca1598
commit 259cc5a39c
No known key found for this signature in database
GPG key ID: FF5E2765BD00628F
3 changed files with 5 additions and 5 deletions

View file

@ -68,8 +68,8 @@ const CODEQL_DEFAULT_CACHE_CONFIG = {
hash: ["**/go.sum"],
},
};
async function makeGlobber(files) {
return glob.create(files.join("\n"));
async function makeGlobber(patterns) {
return glob.create(patterns.join("\n"));
}
/**
* Attempts to restore dependency caches for the languages being analyzed.