Skip to content

Commit 61eac16

Browse files
authored
Merge pull request #156 from theaquamarine/master
Use pwsh as cmd on non-Windows platforms
2 parents b4ea52c + 583ad9a commit 61eac16

File tree

1 file changed

+6
-2
lines changed

1 file changed

+6
-2
lines changed

Support/Powershell.sublime-build

Lines changed: 6 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,8 @@
11
{
2-
"cmd": ["powershell.exe", "-noprofile", "-file", "$file"],
3-
"selector": "source.powershell"
2+
"cmd": ["pwsh", "-noprofile", "-file", "$file"],
3+
"selector": "source.powershell",
4+
5+
"windows": {
6+
"cmd": ["powershell.exe", "-noprofile", "-file", "$file"],
7+
}
48
}

0 commit comments

Comments
 (0)