This commit is contained in:
Marco Gario
2020-12-09 21:35:55 +01:00
parent a59b78de00
commit bc7c99fe9d
3 changed files with 5 additions and 3 deletions
+2 -1
View File
@@ -165,8 +165,9 @@ async function compileQueries(codeql, config, logger) {
}
// Compute hash
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/**`],
files: true,
});
logger.info(finalHash);
File diff suppressed because one or more lines are too long
+2 -1
View File
@@ -288,8 +288,9 @@ async function compileQueries(
}
// Compute hash
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/**`],
files: true,
});
logger.info(finalHash);