Skip to content

Commit

Permalink
fix rebase for startup warning
Browse files Browse the repository at this point in the history
d559072 contained an error
  • Loading branch information
GitMensch committed Feb 7, 2024
1 parent 9ecddaa commit 277d4bf
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@
"debug"
],
"license": "public domain",
"version": "0.27.0",
"version": "0.27.1",
"publisher": "webfreak",
"icon": "images/icon.png",
"engines": {
Expand Down
2 changes: 1 addition & 1 deletion src/mibase.ts
Original file line number Diff line number Diff line change
Expand Up @@ -97,7 +97,7 @@ export class MI2DebugSession extends DebugSession {
protected checkCommand(debuggerName: string): boolean {
try {
const command = process.platform === 'win32' ? 'where' : 'command -v';
execSync(`${command} ${scriptName}`, { stdio: 'ignore' });
execSync(`${command} ${debuggerName}`, { stdio: 'ignore' });
return true;
} catch (error) {
return false;
Expand Down

0 comments on commit 277d4bf

Please sign in to comment.