removed ant clean in build script

This commit is contained in:
Philipp Schaefer 2013-10-22 20:45:48 +02:00
parent 796f693370
commit ffe4379684

View File

@ -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)