def clonePackage(base, pkg):
# Use --no-follow-parent because we're going to handle that with
# grafts.
- subprocess.call(['git', 'svn', 'clone', '--no-follow-parent', '%s/packages/%s' % (base, pkg)],
+ subprocess.check_call(['git', 'svn', 'clone', '--no-follow-parent', '%s/packages/%s' % (base, pkg)],
stdout=subprocess.PIPE)
def cloneAllPackages(base):