Rename argument

This commit is contained in:
Henry Mercer
2026-01-20 13:39:43 +00:00
parent 75716abfa3
commit 5ac04769eb
10 changed files with 23 additions and 22 deletions
+2 -2
View File
@@ -89346,7 +89346,7 @@ ${output}`
await runCli(cmd, codeqlArgs);
}
},
async databaseBundle(databasePath, outputFilePath, databaseName, tryAlsoIncludeRelativePaths) {
async databaseBundle(databasePath, outputFilePath, databaseName, alsoIncludeRelativePaths) {
const args = [
"database",
"bundle",
@@ -89357,7 +89357,7 @@ ${output}`
];
if (await this.supportsFeature("bundleSupportsIncludeOption" /* BundleSupportsIncludeOption */)) {
args.push(
...tryAlsoIncludeRelativePaths.flatMap((relativePath) => [
...alsoIncludeRelativePaths.flatMap((relativePath) => [
"--include",
relativePath
])