Skip to content

Commit 849bc3b

Browse files
authored
🐛 Use call operator for run script starts (#164)
1 parent b3bef1e commit 849bc3b

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/powershell.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -329,7 +329,7 @@ export class PowerShell {
329329
)
330330
// Start the script, the output will be processed by the above events
331331
if (script) {
332-
const fullScript = `${runnerScriptPath} {${script}}\n`
332+
const fullScript = `& '${runnerScriptPath}' {${script}}\n`
333333
this.psProcess.stdin.write(fullScript)
334334
}
335335

0 commit comments

Comments
 (0)