create a bat script to automate freezing into exe.

nanotube [2005-09-05 17:16]
create a bat script to automate freezing into exe.
Filename
make_exe.bat
diff --git a/make_exe.bat b/make_exe.bat
new file mode 100644
index 0000000..323ecda
--- /dev/null
+++ b/make_exe.bat
@@ -0,0 +1,10 @@
+rem *** Used to create a Python exe
+
+rem ***** get rid of all the old files in the build folder
+rd /S /Q build
+
+rem ***** create the exe
+c:\Python24\python setup.py py2exe
+
+rem **** pause so we can see the exit codes
+pause "done...hit a key to exit"
\ No newline at end of file
ViewGit