Skip to content

Commit 852d99d

Browse files
committed
Call codeql.exe rather than codeql.cmd wrapper on Windows
1 parent 8e098cb commit 852d99d

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

lib/setup-tools.js

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

src/setup-tools.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@ export class CodeQLSetup {
1717
if (process.platform === 'win32') {
1818
this.platform = 'win64';
1919
if (this.cmd.endsWith('codeql')) {
20-
this.cmd += ".cmd";
20+
this.cmd += ".exe";
2121
}
2222
} else if (process.platform === 'linux') {
2323
this.platform = 'linux64';

0 commit comments

Comments
 (0)