Skip to content

Commit 277d4bf

Browse files
committed
fix rebase for startup warning
d559072 contained an error
1 parent 9ecddaa commit 277d4bf

2 files changed

Lines changed: 2 additions & 2 deletions

File tree

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@
1010
"debug"
1111
],
1212
"license": "public domain",
13-
"version": "0.27.0",
13+
"version": "0.27.1",
1414
"publisher": "webfreak",
1515
"icon": "images/icon.png",
1616
"engines": {

src/mibase.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -97,7 +97,7 @@ export class MI2DebugSession extends DebugSession {
9797
protected checkCommand(debuggerName: string): boolean {
9898
try {
9999
const command = process.platform === 'win32' ? 'where' : 'command -v';
100-
execSync(`${command} ${scriptName}`, { stdio: 'ignore' });
100+
execSync(`${command} ${debuggerName}`, { stdio: 'ignore' });
101101
return true;
102102
} catch (error) {
103103
return false;

0 commit comments

Comments
 (0)