1
0
mirror of https://gitlab.com/fdroid/fdroidserver.git synced 2024-08-19 12:50:11 +02:00

Show compiler output in verbose mode.

This commit is contained in:
Henrik Tunedal 2011-01-27 20:12:37 +01:00
parent 6fd360e62d
commit 3d623f9017

View File

@ -359,6 +359,8 @@ for app in apps:
print output print output
print "NDK build failed" print "NDK build failed"
sys.exit(1) sys.exit(1)
elif options.verbose:
print output
# Build the release... # Build the release...
if thisbuild.has_key('antcommand'): if thisbuild.has_key('antcommand'):
@ -372,6 +374,8 @@ for app in apps:
print output print output
print "Build failed" print "Build failed"
sys.exit(1) sys.exit(1)
elif options.verbose:
print output
print "Build successful" print "Build successful"
# Find the apk name in the output... # Find the apk name in the output...