From b2bd19f484a002f07c6c465506fe761b094fc33c Mon Sep 17 00:00:00 2001 From: Matthieu Gautier Date: Fri, 27 Jul 2018 10:22:53 +0200 Subject: [PATCH] Use last version of xapian instead of prerelease --- appveyor/install_xapian.cmd | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/appveyor/install_xapian.cmd b/appveyor/install_xapian.cmd index d21e520..fa416e4 100644 --- a/appveyor/install_xapian.cmd +++ b/appveyor/install_xapian.cmd @@ -1,9 +1,9 @@ REM ======================================================== REM Install xapian -curl -fsSL -O http://public.kymeria.fr/KIWIX/windows/xapian-core-1.5.0.zip || exit /b 1 -7z x xapian-core-1.5.0.zip || exit /b 1 -cd xapian-core-1.5.0 +curl -fsSL -O http://download.kiwix.org/dev/xapian-core-1.4.7.zip || exit /b 1 +7z x xapian-core-1.4.7.zip || exit /b 1 +cd xapian-core-1.4.7 mkdir build cd build -%MINGW64_RUN% "cd /c/Projects/kiwix-build/xapian-core-1.5.0/build && /c/Projects/kiwix-build/appveyor/build_xapian.sh" > build_xapian.log || exit /b 1 +%MINGW64_RUN% "cd /c/Projects/kiwix-build/xapian-core-1.4.7/build && /c/Projects/kiwix-build/appveyor/build_xapian.sh" > build_xapian.log || exit /b 1 cd ..\..