diff --git a/ci/bootstrap.ps1 b/ci/bootstrap.ps1 index 46a237e1..abf970eb 100644 --- a/ci/bootstrap.ps1 +++ b/ci/bootstrap.ps1 @@ -27,10 +27,7 @@ function Bootstrap { Invoke-WebRequest -Uri $uri -OutFile $dest # Grant read execute permissions to the destination file - if ($IsWindows) { - icals $dest /remove 'Everyone' - icals $dest /grant 'Everyone:(RX)' - } else { + if (-not $IsWindows) { chmod +x $dest.replace('/\', '/') } }