projects
/
openwrt
/
staging
/
blogic.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
515e826
)
gentree.py: fix directory creating
author
Hauke Mehrtens
<hauke@hauke-m.de>
Mon, 21 Oct 2013 21:42:29 +0000
(23:42 +0200)
committer
Hauke Mehrtens
<hauke@hauke-m.de>
Mon, 21 Oct 2013 21:44:19 +0000
(23:44 +0200)
The full path has to be provided not just the new directory to create.
Signed-off-by: Hauke Mehrtens <hauke@hauke-m.de>
gentree.py
patch
|
blob
|
history
diff --git
a/gentree.py
b/gentree.py
index daf90330a3176ed6422dfdb2cfa2329322c00080..d101bdb4cae4d69877a17f4a2726ab2a04fecce6 100755
(executable)
--- a/
gentree.py
+++ b/
gentree.py
@@
-423,7
+423,7
@@
def upload_release(args, rel_prep, logwrite=lambda x:None):
for path in rel_prep['paths_to_create']:
korg_path += '/' + path
if (not args.kup_test):
- logwrite(kup.mkdir(path))
+ logwrite(kup.mkdir(
korg_
path))
if (not args.kup_test):
logwrite(kup.put(bzip2_name, tar_name + '.asc', korg_path))
logwrite("\nFinished upload!\n")