diff options
-rw-r--r-- | ci/build.ps1 | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/ci/build.ps1 b/ci/build.ps1 index 66a6e532ed..a81d351bc6 100644 --- a/ci/build.ps1 +++ b/ci/build.ps1 @@ -171,7 +171,7 @@ if (-not $NoTests) { } # Ensure choco's cpack is not in PATH otherwise, it conflicts with CMake's -if (Get-Item -Path $env:ChocolateyInstall\bin\cpack.exe) { +if (Test-Path -Path $env:ChocolateyInstall\bin\cpack.exe) { Remove-Item -Path $env:ChocolateyInstall\bin\cpack.exe -Force } |