From 7b1cd8a72fd523cf4f0bbaffcc9208061c836df0 Mon Sep 17 00:00:00 2001 From: psi29a Date: Tue, 20 Oct 2020 07:35:02 +0000 Subject: [PATCH] use LZ4_1.9.2 instead of LZ4_1.9.2 --- CI/before_script.msvc.sh | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/CI/before_script.msvc.sh b/CI/before_script.msvc.sh index 81994ec9c9..2a0db9c91d 100644 --- a/CI/before_script.msvc.sh +++ b/CI/before_script.msvc.sh @@ -912,7 +912,7 @@ printf "LZ4 1.9.2... " if [ -d LZ4_1.9.2 ]; then printf "Exists. " elif [ -z $SKIP_EXTRACT ]; then - rm -rf LZ4-1.9.2 + rm -rf LZ4_1.9.2 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" @@ -925,7 +925,7 @@ printf "LZ4 1.9.2... " SUFFIX="" LZ4_CONFIGURATION="Release" fi - add_runtime_dlls $CONFIGURATION "$(pwd)/LZ4-1.9.2/bin/${LZ4_CONFIGURATION}/liblz4.dll" + add_runtime_dlls $CONFIGURATION "$(pwd)/LZ4_1.9.2/bin/${LZ4_CONFIGURATION}/liblz4.dll" done echo Done. }