summaryrefslogtreecommitdiff
path: root/gentree.py
diff options
context:
space:
mode:
authorHauke Mehrtens <hauke@hauke-m.de>2013-10-28 21:23:52 +0100
committerHauke Mehrtens <hauke@hauke-m.de>2013-10-29 21:05:47 +0100
commitb56f10a7317a228c7e2bf4a32cb7795c10a90579 (patch)
treebc7550215d1f083c22548782f31900cb708fe9c4 /gentree.py
parent66af89a4a44179db5e7e7729bcf12ad474352ba0 (diff)
genlib: add missing slash to korg_path for stable
Upstream commit: 4fb89169e8a5969388b16771695452f55ceb43e6 Without this slash it wants to use the directory /backportsstable/ Signed-off-by: Hauke Mehrtens <hauke@hauke-m.de>
Diffstat (limited to 'gentree.py')
-rwxr-xr-xgentree.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/gentree.py b/gentree.py
index bc446d4e..25e62502 100755
--- a/gentree.py
+++ b/gentree.py
@@ -400,7 +400,7 @@ def upload_release(args, rel_prep, logwrite=lambda x:None):
korg_path = "/pub/linux/kernel/projects/backports"
if (rel_prep['stable']):
- korg_path += "stable"
+ korg_path += "/stable"
parent = os.path.dirname(args.outdir)
release = os.path.basename(args.outdir)