From ad4af6c319f3e1d889c3893b6df2dae6ac99f602 Mon Sep 17 00:00:00 2001 From: Gavin Eke Date: Mon, 26 Mar 2018 15:32:36 +1100 Subject: [PATCH] Replace IsOSX with IsMacOS --- vscode-powershell.build.ps1 | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/vscode-powershell.build.ps1 b/vscode-powershell.build.ps1 index 99250808e8..9e58e966a0 100644 --- a/vscode-powershell.build.ps1 +++ b/vscode-powershell.build.ps1 @@ -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 } }