diff options
| author | Vedang Manerikar <ved.manerikar@gmail.com> | 2021-04-11 21:57:01 +0530 |
|---|---|---|
| committer | Vedang Manerikar <ved.manerikar@gmail.com> | 2021-04-11 23:33:16 +0530 |
| commit | e905af3941e3a9a004659bf54dc1f037930fa0f9 (patch) | |
| tree | d1c2342b899eaf184148518bb095be894608bc94 /ci/appveyor/install.bat | |
| parent | 77f1fcf52c786bf97c128af57b5ec2b8cc2f4b35 (diff) | |
Fix: Download missing dll files separately
I'm making these changes based on reading through the output logs of
the Appveyor code, I don't have any understanding of how mingw64
works.
Diffstat (limited to 'ci/appveyor/install.bat')
| -rw-r--r-- | ci/appveyor/install.bat | 7 |
1 files changed, 7 insertions, 0 deletions
diff --git a/ci/appveyor/install.bat b/ci/appveyor/install.bat index ce7936b..9958d2a 100644 --- a/ci/appveyor/install.bat +++ b/ci/appveyor/install.bat @@ -28,4 +28,11 @@ IF %COMPILER%==msys2 ( REM Set up Cask bash -lc "git clone https://github.com/cask/cask ~/.cask" + REM Download ssleay32 and libeay32 dlls + bash -lc "pushd /c/projects/pdf-tools; curl -fsSL https://indy.fulgan.com/SSL/openssl-1.0.2u-x64_86-win64.zip -o ./tmp/openssl.zip" + + REM Extract *eay32 dlls to TMP + 7z x -o%TMPDIR%\ %TMPDIR%\openssl.zip + bash -lc "pushd /c/projects/pdf-tools; echo Indy Fulgan download complete; pwd; ls -la ./tmp/" + ) |
