summaryrefslogtreecommitdiff
path: root/release
diff options
context:
space:
mode:
authorCarl Hetherington <cth@carlh.net>2012-10-26 16:35:14 +0100
committerCarl Hetherington <cth@carlh.net>2012-10-26 16:35:14 +0100
commit9d92cbeac32b8b22c9d79b936ac583d60fda5725 (patch)
tree313dd7980ee813fe58a93ac5758b614879eb1d1d /release
parentf40583c385c17dfc6ed13eff3ded5637cbf57089 (diff)
Try to fix up 32/64 bit windows builds.
Diffstat (limited to 'release')
-rwxr-xr-xrelease6
1 files changed, 4 insertions, 2 deletions
diff --git a/release b/release
index 9f9850792..29da203c1 100755
--- a/release
+++ b/release
@@ -67,8 +67,10 @@ command("./waf clean")
command("./waf")
command("./waf configure")
command("./waf dist")
-command("./builds/windows")
-shutil.copy(os.path.join('build', 'windows', 'DVD-o-matic %s Installer.exe' % release_version_string), '.')
+command("./builds/windows-32")
+shutil.copy(os.path.join('build', 'windows', 'DVD-o-matic %s 32-bit Installer.exe' % release_version_string), '.')
+command("./builds/windows-64")
+shutil.copy(os.path.join('build', 'windows', 'DVD-o-matic %s 64-bit Installer.exe' % release_version_string), '.')
rewrite_wscript(new_pre_version)