mirror of
https://github.com/github/codeql-action.git
synced 2026-05-07 14:20:19 +00:00
Fix glob
This commit is contained in:
Generated
+2
-1
@@ -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
@@ -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);
|
||||
|
||||
Reference in New Issue
Block a user