diff options
author | Daniel Hahler <git@thequod.de> | 2019-07-10 17:28:35 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2019-07-10 17:28:35 +0200 |
commit | 777cc6f98aa08ca4597658d0fb8b612a1c7c4c77 (patch) | |
tree | dec07c112441bd71f11931450a60bb8f9ac37eb1 | |
parent | 564d415d2082b5ed4bc350ff19dad48572ebc424 (diff) | |
download | rneovim-777cc6f98aa08ca4597658d0fb8b612a1c7c4c77.tar.gz rneovim-777cc6f98aa08ca4597658d0fb8b612a1c7c4c77.tar.bz2 rneovim-777cc6f98aa08ca4597658d0fb8b612a1c7c4c77.zip |
ci: AppVeyor: do not install unibilium system-wide (#10464)
Initially added in 685ca180f, but gets built via third-party anyway by now.
-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 c68b3fccb4..5f0f0de218 100644 --- a/ci/build.ps1 +++ b/ci/build.ps1 @@ -50,7 +50,7 @@ if ($compiler -eq 'MINGW') { # in MSYS2, but we cannot build inside the MSYS2 shell. $cmakeGenerator = 'Ninja' $cmakeGeneratorArgs = '-v' - $mingwPackages = @('ninja', 'cmake', 'perl', 'diffutils', 'unibilium').ForEach({ + $mingwPackages = @('ninja', 'cmake', 'perl', 'diffutils').ForEach({ "mingw-w64-$arch-$_" }) |