forked from mirror/openmw-tes3mp
Update before_script.msvc.sh
taking nits into account :)
This commit is contained in:
parent
a532aef935
commit
8811c7141a
1 changed files with 6 additions and 5 deletions
|
@ -1,5 +1,5 @@
|
|||
#!/bin/bash
|
||||
set -x
|
||||
# set -x # turn-on for debugging
|
||||
|
||||
MISSINGTOOLS=0
|
||||
|
||||
|
@ -417,13 +417,14 @@ fi
|
|||
# We work around this by installing to root of the current working drive and then move it to our deps
|
||||
|
||||
BOOST_SDK="$(real_pwd)/Boost"
|
||||
CWD_DRIVE_ROOT=`powershell -command '(get-location).Drive.Root'` # get the current working drive's root
|
||||
CWD_DRIVE_ROOT=$(powershell -command '(get-location).Drive.Root') # get the current working drive's root
|
||||
|
||||
if [ -d Boost ] && grep "BOOST_VERSION 106700" Boost/boost/version.hpp > /dev/null; then
|
||||
printf "Exists. "
|
||||
elif [ -z $SKIP_EXTRACT ]; then
|
||||
rm -rf Boost
|
||||
"${DEPS}/boost-1.67.0-msvc${MSVC_YEAR}-win${BITS}.exe" //DIR="${CWD_DRIVE_ROOT}Boost_temp" //VERYSILENT //NORESTART //SUPPRESSMSGBOXES //LOG="boost_install.log"
|
||||
[ -n "$CI" ] CI_EXTRA_INNO_OPTIONS="//SUPPRESSMSGBOXES //LOG="boost_install.log"
|
||||
"${DEPS}/boost-1.67.0-msvc${MSVC_YEAR}-win${BITS}.exe" //DIR="${CWD_DRIVE_ROOT}Boost_temp" //VERYSILENT //NORESTART ${CI_EXTRA_INNO_OPTIONS}
|
||||
mv "${CWD_DRIVE_ROOT}Boost_temp" "${BOOST_SDK}"
|
||||
|
||||
fi
|
||||
|
|
Loading…
Reference in a new issue