Skip to content

Commit

Permalink
Fix Formatting error
Browse files Browse the repository at this point in the history
  • Loading branch information
sharpepd committed Oct 7, 2024
1 parent 5b95a15 commit 8160ed5
Showing 1 changed file with 3 additions and 4 deletions.
7 changes: 3 additions & 4 deletions packages/vscode-extension/src/workspace.ts
Original file line number Diff line number Diff line change
Expand Up @@ -176,11 +176,10 @@ export class Workspace {
}

try {
let globalBin = "";
let globalBin = '';
if (process.platform === 'win32') {
globalBin = execa.sync('cmd', ['/c','where','moon']).stdout;
}
else{
globalBin = execa.sync('cmd', ['/c', 'where', 'moon']).stdout;
} else {
globalBin = execa.sync('which', ['moon']).stdout;
}

Expand Down

0 comments on commit 8160ed5

Please sign in to comment.