We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent af96894 commit b15caadCopy full SHA for b15caad
src/platform.ts
@@ -108,7 +108,7 @@ export function getDefaultPowerShellPath(
108
return !platformDetails.isOS64Bit || platformDetails.isProcess64Bit
109
? System32PowerShellPath
110
: SysnativePowerShellPath;
111
- } if (platformDetails.operatingSystem === OperatingSystem.MacOS) {
+ } if (platformDetails.operatingSystem === OperatingSystem.MacOS) {
112
// Always default to the stable version of PowerShell (if installed) but handle case of only Preview installed
113
powerShellExePath = macOSExePath;
114
if (!fs.existsSync(macOSExePath) && fs.existsSync(macOSPreviewExePath)) {
0 commit comments