summaryrefslogtreecommitdiff
path: root/utils/common/deploy-themeeditor.py
diff options
context:
space:
mode:
Diffstat (limited to 'utils/common/deploy-themeeditor.py')
-rwxr-xr-xutils/common/deploy-themeeditor.py10
1 files changed, 5 insertions, 5 deletions
diff --git a/utils/common/deploy-themeeditor.py b/utils/common/deploy-themeeditor.py
index 8b66e5aef4..0b72d43985 100755
--- a/utils/common/deploy-themeeditor.py
+++ b/utils/common/deploy-themeeditor.py
@@ -22,13 +22,13 @@ deploy.program = "rbthemeeditor"
22deploy.project = "utils/themeeditor/themeeditor.pro" 22deploy.project = "utils/themeeditor/themeeditor.pro"
23deploy.svnserver = "svn://svn.rockbox.org/rockbox/" 23deploy.svnserver = "svn://svn.rockbox.org/rockbox/"
24deploy.svnpaths = \ 24deploy.svnpaths = \
25 [ "utils/themeeditor/", 25 ["utils/themeeditor/",
26 "lib/skin_parser/", 26 "lib/skin_parser/",
27 "docs/COPYING" ] 27 "docs/COPYING"]
28deploy.useupx = False 28deploy.useupx = False
29deploy.bundlecopy = { 29deploy.bundlecopy = {
30 "resources/windowicon.icns" : "Contents/Resources/", 30 "resources/windowicon.icns" : "Contents/Resources/",
31 "Info.plist" : "Contents/" 31 "Info.plist" : "Contents/"
32} 32}
33deploy.progexe = { 33deploy.progexe = {
34 "win32" : "release/rbthemeeditor.exe", 34 "win32" : "release/rbthemeeditor.exe",
@@ -52,7 +52,7 @@ deploy.make = {
52# all files of the program. Will get put into an archive after building 52# all files of the program. Will get put into an archive after building
53# (zip on w32, tar.bz2 on Linux). Does not apply on Mac which uses dmg. 53# (zip on w32, tar.bz2 on Linux). Does not apply on Mac which uses dmg.
54# progexe will get added automatically. 54# progexe will get added automatically.
55deploy.programfiles = [ ] 55deploy.programfiles = list()
56deploy.nsisscript = "utils/themeeditor/themeeditor.nsi" 56deploy.nsisscript = "utils/themeeditor/themeeditor.nsi"
57 57
58deploy.deploy() 58deploy.deploy()