From ffe437968477485ad21cfd884981fdfb97cd8614 Mon Sep 17 00:00:00 2001 From: Philipp Schaefer Date: Tue, 22 Oct 2013 20:45:48 +0200 Subject: [PATCH] removed ant clean in build script --- build.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/build.py b/build.py index 250e502f..96212c5c 100755 --- a/build.py +++ b/build.py @@ -263,7 +263,7 @@ if buildMobile: if buildMobile != 'copyonly': # now launch 'ant' to build the mobile project - retcode = os.system("ant clean %s -buildfile mobile/build.xml %s" % (antOptions, buildMobile)) + retcode = os.system("ant %s -buildfile mobile/build.xml %s" % (antOptions, buildMobile)) if retcode != 0: print ("Error: mobile app failed to build. ant returned %d" % retcode)