diff options
| author | Dominik Riebeling <Dominik.Riebeling@gmail.com> | 2015-05-30 18:21:32 +0200 |
|---|---|---|
| committer | Dominik Riebeling <Dominik.Riebeling@gmail.com> | 2015-05-30 18:21:32 +0200 |
| commit | 5f5d7f608a01a682b3416dc576ac897b2714e55f (patch) | |
| tree | 322798f9ea43509c0765c178fae7c55f013a402a | |
| parent | 2af2a1253cc557eb7a845132e65e68e14cfd2a4a (diff) | |
| download | rockbox-5f5d7f608a01a682b3416dc576ac897b2714e55f.zip rockbox-5f5d7f608a01a682b3416dc576ac897b2714e55f.tar.gz rockbox-5f5d7f608a01a682b3416dc576ac897b2714e55f.tar.bz2 rockbox-5f5d7f608a01a682b3416dc576ac897b2714e55f.tar.xz | |
Fix path creation for zip file names in current folder.
When building in the current tree (i.e. buildfolder ending up as '.') creating
the filename to use in the zip file stripped all '.' characters. Use a
different way to create the filename to avoid this.
Change-Id: I139c404d5e83a8bcb028a9a22b125f238911e405
| -rwxr-xr-x | utils/common/deploy.py | 6 |
1 files changed, 1 insertions, 5 deletions
diff --git a/utils/common/deploy.py b/utils/common/deploy.py index 24163d2..f57447a 100755 --- a/utils/common/deploy.py +++ b/utils/common/deploy.py @@ -354,11 +354,7 @@ def zipball(programfiles, versionstring, buildfolder, platform=sys.platform): for root, dirs, files in os.walk(outfolder): for name in files: physname = os.path.normpath(os.path.join(root, name)) - filename = string.replace(physname, os.path.normpath(buildfolder), "") - zf.write(physname, filename) - for name in dirs: - physname = os.path.normpath(os.path.join(root, name)) - filename = string.replace(physname, os.path.normpath(buildfolder), "") + filename = os.path.relpath(physname, buildfolder) zf.write(physname, filename) zf.close() # remove output folder |