From 1278d3b784c0f320a41051a7fd6a6071ee2753ad Mon Sep 17 00:00:00 2001 From: psi29a Date: Mon, 19 Oct 2020 22:36:34 +0000 Subject: [PATCH] make sure to use new path and trick caching --- CI/before_script.msvc.sh | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/CI/before_script.msvc.sh b/CI/before_script.msvc.sh index b5fb655aae..81994ec9c9 100644 --- a/CI/before_script.msvc.sh +++ b/CI/before_script.msvc.sh @@ -909,13 +909,13 @@ echo # LZ4 printf "LZ4 1.9.2... " { - if [ -d LZ4-1.9.2 ]; then + if [ -d LZ4_1.9.2 ]; then printf "Exists. " elif [ -z $SKIP_EXTRACT ]; then rm -rf LZ4-1.9.2 - eval 7z x -y lz4_win${BITS}_v1_9_2.7z -o./LZ4-1.9.2 $STRIP + eval 7z x -y lz4_win${BITS}_v1_9_2.7z -o./LZ4_1.9.2 $STRIP fi - export LZ4DIR="$(real_pwd)/LZ4-1.9.2" + export LZ4DIR="$(real_pwd)/LZ4_1.9.2" add_cmake_opts -DLZ4_INCLUDE_DIR="${LZ4DIR}/include" \ -DLZ4_LIBRARY="${LZ4DIR}/lib/liblz4.lib" for CONFIGURATION in ${CONFIGURATIONS[@]}; do