1
0
Fork 1
mirror of https://github.com/TES3MP/openmw-tes3mp.git synced 2025-01-19 22:23:51 +00:00

Merge branch 'AnyOldName3-master-patch-15901' into 'master'

Fix ifs for ACTIVATE_MSVC

Closes #5460

See merge request OpenMW/openmw!220
This commit is contained in:
Alexei Dobrohotov 2020-06-14 19:50:15 +00:00
commit 9dff13a94c

View file

@ -957,7 +957,7 @@ fi
echo
#fi
if ! [ -z $ACTIVATE_MSVC ]; then
if [ -n "$ACTIVATE_MSVC" ]; then
echo -n "- Activating MSVC in the current shell... "
command -v vswhere >/dev/null 2>&1 || { echo "Error: vswhere is not on the path."; wrappedExit 1; }
@ -1010,7 +1010,7 @@ fi
echo "Script completed successfully."
echo "You now have an OpenMW build system at $(unixPathAsWindows "$(pwd)")"
if [ -n $ACTIVATE_MSVC ]; then
if [ -n "$ACTIVATE_MSVC" ]; then
echo
echo "Note: you must manually activate MSVC for the shell in which you want to do the build."
echo