From 1c4363eaa649c8ea7d3840b5db1aaba1a0280816 Mon Sep 17 00:00:00 2001 From: Bret Curtis Date: Thu, 28 Jun 2018 11:22:54 +0000 Subject: [PATCH] Using SYSTEMDRIVE because TEMP apparently means something different in bash then to windows cmd. --- 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 b2e2144e4b..d6cb7323e4 100644 --- a/CI/before_script.msvc.sh +++ b/CI/before_script.msvc.sh @@ -422,8 +422,8 @@ fi printf "Exists. " elif [ -z $SKIP_EXTRACT ]; then rm -rf Boost - "${DEPS}/boost-1.61.0-msvc${MSVC_YEAR}-win${BITS}.exe" //DIR="${TEMP}\boost" //VERYSILENT //NORESTART //SUPPRESSMSGBOXES //LOG="boost_install.log" - mv ${TEMP}/boost ${BOOST_SDK} + "${DEPS}/boost-1.61.0-msvc${MSVC_YEAR}-win${BITS}.exe" //DIR="${SYSTEMDRIVE}\boost" //VERYSILENT //NORESTART //SUPPRESSMSGBOXES //LOG="boost_install.log" + mv "${SYSTEMDRIVE}\boost" ${BOOST_SDK} fi add_cmake_opts -DBOOST_ROOT="$BOOST_SDK" \