We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents f6d3f9f + ff07dc2 commit 7927dccCopy full SHA for 7927dcc
src/build.py
@@ -325,7 +325,8 @@ def make_package(args):
325
326
# Build.
327
try:
328
- map(lambda arg: subprocess.call([ANT, arg]), args.command)
+ for arg in args.command:
329
+ subprocess.check_call([ANT, arg])
330
except (OSError, IOError):
331
print 'An error occured while calling', ANT
332
print 'Did you install ant on your system ?'
0 commit comments