Include toolcache

This commit is contained in:
Marco Gario
2020-12-09 21:45:24 +01:00
parent bc7c99fe9d
commit decd1b45be
3 changed files with 9 additions and 3 deletions
+4 -1
View File
@@ -167,7 +167,10 @@ async function compileQueries(codeql, config, logger) {
const globHash = require("glob-hash");
logger.info("Temp dir ${config.tempDir}");
const finalHash = await globHash({
include: [`${config.tempDir}/**/.cache/data/**`],
include: [
`${config.tempDir}/**/.cache/data/**`,
`${config.toolCacheDir}/**/.cache/data/**`,
],
files: true,
});
logger.info(finalHash);
File diff suppressed because one or more lines are too long