mirror of
https://github.com/azure/login.git
synced 2026-03-15 09:20:56 -04:00
fix: wrap PowerShellToolRunner.psPath in "" (#31)
This commit is contained in:
committed by
GitHub
parent
358ee2b773
commit
eeeade0627
@@ -28,7 +28,7 @@ class PowerShellToolRunner {
|
||||
}
|
||||
static executePowerShellScriptBlock(scriptBlock, options = {}) {
|
||||
return __awaiter(this, void 0, void 0, function* () {
|
||||
yield exec.exec(`${PowerShellToolRunner.psPath} -Command`, [scriptBlock], options);
|
||||
yield exec.exec(`"${PowerShellToolRunner.psPath}" -Command`, [scriptBlock], options);
|
||||
});
|
||||
}
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user