Skip to content

Commit

Permalink
Add shell: true
Browse files Browse the repository at this point in the history
  • Loading branch information
jdneo committed Aug 23, 2024
1 parent ab348d5 commit 70eff12
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion test/index.ts
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,8 @@ async function main(): Promise<void> {
const [cli, ...args] = resolveCliArgsFromVSCodeExecutablePath(vscodeExecutablePath);
cp.spawnSync(cli, [...args, '--install-extension', 'redhat.java'], {
encoding: 'utf-8',
stdio: 'inherit'
stdio: 'inherit',
shell: true
});

// The folder containing the Extension Manifest package.json
Expand Down

0 comments on commit 70eff12

Please sign in to comment.