linkchecker/dist.bat
2009-02-24 16:32:04 +01:00

8 lines
185 B
Batchfile
Executable file

@echo off
: batch file for generating the windows .exe installer
set PYTHON="c:\Python26\python.exe"
rd /S /Q build
call build.bat
rd /S /Q dist
%PYTHON% setup.py py2exe
@pause