From 55ae289b5c070e85ec616b7f7d07e3416e2401e0 Mon Sep 17 00:00:00 2001 From: Ben Boeckel Date: Tue, 8 Sep 2009 22:29:29 -0400 Subject: Add code to get the files --- rpmbuild-remote.py | 4 ++++ 1 file changed, 4 insertions(+) (limited to 'rpmbuild-remote.py') 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(): -- cgit