summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorBen Boeckel <MathStuf@gmail.com>2009-09-09 01:11:48 -0400
committerBen Boeckel <MathStuf@gmail.com>2009-09-09 01:11:48 -0400
commit4949ebe99f481d428095a5c52d94a159d8c17462 (patch)
tree002cad22504d26af438698d9c5cb2c653d738700
parente29b9a79ee4814e0f773b43130d5e8d8bbb30b76 (diff)
downloadrpmbuild-remote-4949ebe99f481d428095a5c52d94a159d8c17462.tar.gz
rpmbuild-remote-4949ebe99f481d428095a5c52d94a159d8c17462.tar.xz
rpmbuild-remote-4949ebe99f481d428095a5c52d94a159d8c17462.zip
Add a trailing slash
-rw-r--r--rpmbuild-remote.py4
1 files changed, 2 insertions, 2 deletions
diff --git a/rpmbuild-remote.py b/rpmbuild-remote.py
index e63bbbf..fa1844c 100644
--- a/rpmbuild-remote.py
+++ b/rpmbuild-remote.py
@@ -142,9 +142,9 @@ def execute_jobs(opts, system, jobs):
% (opts.mock, file)
fetch = get_rpmbuild_results
else:
- dest = "rpmbuild/SPECS"
+ dest = "rpmbuild/SPECS/"
send_files(session, [job[0]], dest)
- dest = "rpmbuild/SOURCES"
+ dest = "rpmbuild/SOURCES/"
send_files(session, job[1:], dest)
file = os.path.basename(job[0])
LOG.info("Building %s from %d souces" % (file, len(job) - 1))