Skip to content

Commit

Permalink
Replace IsOSX with IsMacOS (#1248)
Browse files Browse the repository at this point in the history
  • Loading branch information
GavinEke authored and rkeithhill committed Mar 29, 2018
1 parent 02198db commit b88506e
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion vscode-powershell.build.ps1
Original file line number Diff line number Diff line change
Expand Up @@ -109,7 +109,7 @@ task BuildEditorServices {
task BuildAll BuildEditorServices, Build -Before Package

task Test Build, {
if (!$global:IsLinux -and !$global:IsOSX) {
if (!$global:IsLinux -and !$global:IsMacOS) {
Write-Host "`n### Running extension tests" -ForegroundColor Green
exec { & npm run test }
}
Expand Down

0 comments on commit b88506e

Please sign in to comment.