Fix CI errors with linting

This commit is contained in:
Jakob Linskeseder
2026-02-07 20:32:53 +01:00
committed by Jay Linski
parent e0137c26f2
commit 8841a5f6d3
4 changed files with 5763 additions and 13928 deletions
+1 -1
View File
@@ -24,7 +24,7 @@ async function execFileWithInheritedOutput(command, args) {
const resolvedCommand = preferLocalDependencies(command);
const child = childProcess.spawn(resolvedCommand, args, {
stdio: 'inherit',
shell: true
shell: process.platform === 'win32' // Workaround for CVE-2024-27980
});
child.on('exit', code => {
if (code !== 0) {