We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 9ecddaa commit 277d4bfCopy full SHA for 277d4bf
2 files changed
package.json
@@ -10,7 +10,7 @@
10
"debug"
11
],
12
"license": "public domain",
13
- "version": "0.27.0",
+ "version": "0.27.1",
14
"publisher": "webfreak",
15
"icon": "images/icon.png",
16
"engines": {
src/mibase.ts
@@ -97,7 +97,7 @@ export class MI2DebugSession extends DebugSession {
97
protected checkCommand(debuggerName: string): boolean {
98
try {
99
const command = process.platform === 'win32' ? 'where' : 'command -v';
100
- execSync(`${command} ${scriptName}`, { stdio: 'ignore' });
+ execSync(`${command} ${debuggerName}`, { stdio: 'ignore' });
101
return true;
102
} catch (error) {
103
return false;
0 commit comments