summaryrefslogtreecommitdiffstats
path: root/rpmbuild-remote.py
diff options
context:
space:
mode:
authorBen Boeckel <MathStuf@gmail.com>2009-09-08 22:29:29 -0400
committerBen Boeckel <MathStuf@gmail.com>2009-09-08 22:29:29 -0400
commit55ae289b5c070e85ec616b7f7d07e3416e2401e0 (patch)
tree48d7c4088c368bacaf2e55ae267f0b3a4b9d7cc3 /rpmbuild-remote.py
parent47570f0e9a233308c709d992ffeef7aab02a133c (diff)
downloadrpmbuild-remote-55ae289b5c070e85ec616b7f7d07e3416e2401e0.tar.gz
rpmbuild-remote-55ae289b5c070e85ec616b7f7d07e3416e2401e0.tar.xz
rpmbuild-remote-55ae289b5c070e85ec616b7f7d07e3416e2401e0.zip
Add code to get the files
Diffstat (limited to 'rpmbuild-remote.py')
-rw-r--r--rpmbuild-remote.py4
1 files changed, 4 insertions, 0 deletions
diff --git a/rpmbuild-remote.py b/rpmbuild-remote.py
index db612ac..b1cacae 100644
--- a/rpmbuild-remote.py
+++ b/rpmbuild-remote.py
@@ -145,8 +145,12 @@ def execute_jobs(opts, system, jobs):
files = session.exec_command(cmd)
finish = time.clock()
LOG.info("Completed build %.03f seconds" % (finish - start))
+ LOG.info("Downloading results...")
# Write output files
# Fetch RPM files
+ # Find "Wrote: " lines in the output
+ files = []
+ get_files(session, files, opts.dest)
session.close()
def main():