From 8458745bc4e3ad69618c66c7fa8ec10aee5524a0 Mon Sep 17 00:00:00 2001 From: xawotihs Date: Tue, 5 Aug 2014 23:33:38 +0200 Subject: [PATCH] Fixed shell issue --- travis-script.sh | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/travis-script.sh b/travis-script.sh index ff04a5d07..3aa225eb5 100755 --- a/travis-script.sh +++ b/travis-script.sh @@ -33,7 +33,7 @@ mv core_*.zip ../../../../core.zip cd ../../../.. # we're building a PSP binary here -if [ "$BUILD_TYPE" == "PSP"]; then +if [ "$BUILD_TYPE" == "PSP" ]; then # let's dump some info to debug a bit echo PSPDEV = $PSPDEV echo psp-config = `psp-config --psp-prefix` @@ -59,14 +59,14 @@ if [ "$BUILD_TYPE" == "PSP"]; then fi # we're building an Android binary here -if [ "$BUILD_TYPE" == "Android"]; then +if [ "$BUILD_TYPE" == "Android" ]; then android-ndk-r9/ndk-build -C projects/mtg/Android -j8 $ANDROID list targets $ANDROID update project -t 1 -p projects/mtg/Android ant debug -f projects/mtg/Android/build.xml fi -if [ "$BUILD_TYPE" == "Qt"]; then +if [ "$BUILD_TYPE" == "Qt" ]; then # we're building a Qt version with GUI here mkdir qt-gui-build cd qt-gui-build