summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorBen Boeckel <MathStuf@gmail.com>2009-09-10 15:10:17 -0400
committerBen Boeckel <MathStuf@gmail.com>2009-09-10 15:10:17 -0400
commit62ed4c8a3dfb95440acfa244b46409680f9a22de (patch)
treefe73560313fd5fb5b0f4fce795928c261566f32c
parent7427ce4e6ea6d1a76447de9e583ba8d61ada0da7 (diff)
downloadrpmbuild-remote-62ed4c8a3dfb95440acfa244b46409680f9a22de.tar.gz
rpmbuild-remote-62ed4c8a3dfb95440acfa244b46409680f9a22de.tar.xz
rpmbuild-remote-62ed4c8a3dfb95440acfa244b46409680f9a22de.zip
Ensure there is a trailing slash in the directory
-rwxr-xr-xrpmbuild-remote.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/rpmbuild-remote.py b/rpmbuild-remote.py
index 7c3eb08..cee062f 100755
--- a/rpmbuild-remote.py
+++ b/rpmbuild-remote.py
@@ -196,7 +196,7 @@ def execute_jobs(opts, system, jobs):
(sin, sout, serr) = session.exec_command(cmd)
LOG.info("Downloading results...")
sin.close()
- fetch(session, os.path.join(opts.dest, file), sout, serr)
+ fetch(session, os.path.join(opts.dest, file, ''), sout, serr)
sout.close()
serr.close()
session.close()