diff options
author | Hauke Mehrtens <hauke@hauke-m.de> | 2013-10-28 21:23:52 +0100 |
---|---|---|
committer | Hauke Mehrtens <hauke@hauke-m.de> | 2013-10-28 21:35:22 +0100 |
commit | bf923dc2c8fa9799e021cecf90d0fa6ab8534cf5 (patch) | |
tree | 3b26c9084df0ba973726bfa92b32ea898e728e6e | |
parent | 6d3ea93eb519b274ccca6da8b1beba5f40298e58 (diff) |
genlib: add missing slash to korg_path for stablev3.10.17-1
Upstream commit: 4fb89169e8a5969388b16771695452f55ceb43e6
Without this slash it wants to use the directory /backportsstable/
Signed-off-by: Hauke Mehrtens <hauke@hauke-m.de>
-rwxr-xr-x | gentree.py | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -382,7 +382,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) |