mirror of
https://github.com/TES3MP/openmw-tes3mp.git
synced 2025-02-27 22:39:40 +00:00
Fix compare with empty value
This commit is contained in:
parent
e99f783c65
commit
7d2c741d1d
1 changed files with 1 additions and 1 deletions
|
@ -446,7 +446,7 @@ echo
|
|||
if [ -z $APPVEYOR ]; then
|
||||
printf "Boost 1.67.0... "
|
||||
else
|
||||
if [ $MSVC_VER -eq 12.0 ]; then
|
||||
if [ "${MSVC_VER}" -eq 12.0 ]; then
|
||||
printf "Boost 1.58.0 AppVeyor... "
|
||||
else
|
||||
printf "Boost 1.67.0 AppVeyor... "
|
||||
|
|
Loading…
Reference in a new issue