From 583461e44524863bcf449e91be2ae8ada1ccbcec Mon Sep 17 00:00:00 2001 From: Mathieu Virbel Date: Tue, 6 Dec 2011 16:02:21 +0100 Subject: [PATCH] fix build_kivy.sh conditions --- build_kivy.sh | 6 ++---- 1 file changed, 2 insertions(+), 4 deletions(-) diff --git a/build_kivy.sh b/build_kivy.sh index 466e77a..dad3ac0 100755 --- a/build_kivy.sh +++ b/build_kivy.sh @@ -2,16 +2,14 @@ . ./environment.sh -set -x - -if [ ! -d kivy ]; then +if [ ! -d kivy ] ; then try git clone https://github.com/tito/kivy try cd kivy try git checkout ios-support try cd .. fi -if [ "X$1" == "X-f" ]; then +if [ "X$1" = "X-f" ] ; then try cd kivy try git clean -dxf try git fetch