Download packages only when buildpackage.py was run

This commit is contained in:
Erik Johnson 2014-09-11 13:19:44 -05:00
parent e22c000d5c
commit cb31726500

View file

@ -765,8 +765,9 @@ def run(opts):
print(stderr)
sys.stderr.flush()
# Download packages
download_packages(opts)
# Download packages only if the script ran and was successful
if 'Build complete' in stdout:
download_packages(opts)
'''
if opts.download_remote_reports: