linkchecker/dist.bat

9 lines
185 B
Batchfile
Raw Normal View History

2009-02-24 10:56:25 +00:00
@echo off
: batch file for generating the windows .exe installer
set PYTHON="c:\Python26\python.exe"
2009-02-24 15:32:04 +00:00
rd /S /Q build
2009-02-24 10:56:25 +00:00
call build.bat
rd /S /Q dist
%PYTHON% setup.py py2exe
2009-02-24 15:32:04 +00:00
@pause