Generate JS

This commit is contained in:
Rasmus Wriedt Larsen
2024-01-05 10:32:41 +01:00
parent 2e27b3c56b
commit 9926570d4c
4 changed files with 5 additions and 5 deletions

4
lib/feature-flags.js generated
View File

@@ -360,8 +360,8 @@ async function logCodeScanningConfigInCli(codeql, features, logger) {
}
exports.logCodeScanningConfigInCli = logCodeScanningConfigInCli;
async function isPythonDependencyInstallationDisabled(codeql, features) {
return (await features.getValue(Feature.DisablePythonDependencyInstallationEnabled, codeql)) ||
(await features.getValue(Feature.PythonDefaultIsToSkipDependencyInstallationEnabled, codeql));
return ((await features.getValue(Feature.DisablePythonDependencyInstallationEnabled, codeql)) ||
(await features.getValue(Feature.PythonDefaultIsToSkipDependencyInstallationEnabled, codeql)));
}
exports.isPythonDependencyInstallationDisabled = isPythonDependencyInstallationDisabled;
//# sourceMappingURL=feature-flags.js.map