Added pause to dist

This commit is contained in:
Bastian Kleineidam 2009-02-24 16:32:04 +01:00
parent 8e82c31fb6
commit 4ecf4248c8
2 changed files with 2 additions and 1 deletions

View file

@ -1,6 +1,5 @@
@echo off
set PYTHON="c:\Python26\python.exe"
rd /S /Q build
%PYTHON% setup.py sdist --manifest-only
%PYTHON% setup.py build -c mingw32
copy build\lib.win32-2.6\linkcheck\HtmlParser\htmlsax.pyd linkcheck\HtmlParser

View file

@ -1,6 +1,8 @@
@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