diff options
| author | Vedang Manerikar <ved.manerikar@gmail.com> | 2021-04-11 20:17:31 +0530 |
|---|---|---|
| committer | Vedang Manerikar <ved.manerikar@gmail.com> | 2021-04-11 23:15:57 +0530 |
| commit | 1207e182edc4d41a40cd01e0af13bba4f8893b87 (patch) | |
| tree | ae27bf3c1975e8bde7369b8c6711df91bbe60656 | |
| parent | f59f53e1ef931d509cd8048b9a4f70e0b8b8cf80 (diff) | |
Fix: Appveyor errors related to missing python2
https://ci.appveyor.com/project/vedang/pdf-tools/builds/38649076
failed with `python2 not found`, which was the proposed fix in
politza/pdf-tools@628 . My guess is that `python2` now needs to be
explicitly installed in mingw64.
This commit adds an explicit dependency on `mingw-w64-x86_64-python2`
to test this.
Closes politza/pdf-tools@628
| -rw-r--r-- | ci/appveyor/install.bat | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/ci/appveyor/install.bat b/ci/appveyor/install.bat index ad13f8f..818d262 100644 --- a/ci/appveyor/install.bat +++ b/ci/appveyor/install.bat @@ -20,7 +20,7 @@ IF %COMPILER%==msys2 ( bash -lc "pacman -S --needed --noconfirm git" REM dependencies - bash -lc "pacman -S --needed --noconfirm mingw-w64-x86_64-zlib mingw-w64-x86_64-libpng mingw-w64-x86_64-poppler mingw-w64-x86_64-imagemagick openssl mingw-w64-x86_64-openssl" + bash -lc "pacman -S --needed --noconfirm mingw-w64-x86_64-zlib mingw-w64-x86_64-libpng mingw-w64-x86_64-poppler mingw-w64-x86_64-imagemagick openssl mingw-w64-x86_64-openssl mingw-w64-x86_64-python2" REM Set up emacs bash -lc "pacman -S --needed --noconfirm mingw-w64-x86_64-emacs" |
