From 90bcda3c10411ee4c1c65a494ec7c08dfdea01b4 Mon Sep 17 00:00:00 2001 From: Magnus Auvinen Date: Tue, 22 May 2007 15:06:15 +0000 Subject: move even more stuff --- scripts/deploy_win.py | 30 ++++++++++++++++++++++++++++++ 1 file changed, 30 insertions(+) create mode 100644 scripts/deploy_win.py (limited to 'scripts/deploy_win.py') diff --git a/scripts/deploy_win.py b/scripts/deploy_win.py new file mode 100644 index 00000000..3015ba5a --- /dev/null +++ b/scripts/deploy_win.py @@ -0,0 +1,30 @@ +import zipfile +import os, os.path +from distutils.file_util import copy_file + +# A bit of dir trickery to make sure we're referring to the right dir +# this makes it possible to run the script both from the teewars root and +# the scripts subdir +if os.getcwd().find("scripts") > -1: + dir = os.path.abspath("..") +else: + dir = os.getcwd() + +data_dir = "%s\\%s" % (dir, 'data') +exe_file = "%s\\%s" % (dir, 'teewars.exe') +zip_file = "%s\\%s" % (dir, 'teewars.zip') + +ns = os.listdir(data_dir) +try: + ns.remove('.svn') +except: + pass +zf = zipfile.ZipFile(zip_file, 'w', zipfile.ZIP_DEFLATED) +zf.write(exe_file, 'teewars.exe') +for n in ns: + zf.write(os.path.join(data_dir, n), "%s\\%s" % ('data', n)) + +print "Data written to zip-file:\n" +zf.printdir() +zf.close() + -- cgit 1.4.1