Skip to content

Commit

Permalink
chore: print shell string if failed to spawn
Browse files Browse the repository at this point in the history
  • Loading branch information
sheremet-va committed May 17, 2024
1 parent 04bd461 commit a3187ed
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/utils.ts
Original file line number Diff line number Diff line change
Expand Up @@ -169,7 +169,7 @@ async function findNodeViaShell(cwd: string): Promise<string | undefined> {
})
}
catch (e) {
log.error('[SPAWN]', e)
log.error('[SPAWN]', vscode.env.shell, e)
resolve(undefined)
}
})
Expand Down

0 comments on commit a3187ed

Please sign in to comment.