mirror of
https://github.com/OpenMW/openmw.git
synced 2025-04-02 06:36:39 +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
|
if [ -z $APPVEYOR ]; then
|
||||||
printf "Boost 1.67.0... "
|
printf "Boost 1.67.0... "
|
||||||
else
|
else
|
||||||
if [ $MSVC_VER -eq 12.0 ]; then
|
if [ "${MSVC_VER}" -eq 12.0 ]; then
|
||||||
printf "Boost 1.58.0 AppVeyor... "
|
printf "Boost 1.58.0 AppVeyor... "
|
||||||
else
|
else
|
||||||
printf "Boost 1.67.0 AppVeyor... "
|
printf "Boost 1.67.0 AppVeyor... "
|
||||||
|
|
Loading…
Reference in a new issue