Skip to content

Commit

Permalink
Add missing 'l' to path
Browse files Browse the repository at this point in the history
  • Loading branch information
rkeithhill authored and daviwil committed Oct 26, 2017
1 parent a70a499 commit 0def853
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/platform.ts
Original file line number Diff line number Diff line change
Expand Up @@ -73,7 +73,7 @@ export function getDefaultPowerShellPath(
}
else if (platformDetails.operatingSystem == OperatingSystem.MacOS) {
powerShellExePath = "/usr/local/bin/powershell";
if (fs.existsSync("/usr/loca/bin/pwsh")) {
if (fs.existsSync("/usr/local/bin/pwsh")) {
powerShellExePath = "/usr/local/bin/pwsh";
}
}
Expand Down

0 comments on commit 0def853

Please sign in to comment.