We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 0b16d85 commit 2654471Copy full SHA for 2654471
1 file changed
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