dosage/scripts/dist.bat

10 lines
236 B
Batchfile
Raw Normal View History

2012-12-12 16:41:29 +00:00
:: Create Windows distribution file
:: Copyright (C) 2010-2012 Bastian Kleineidam
@echo off
set PYDIR=c:\python27
rd /s /q build > nul 2>&1
call %~dp0\build.bat
rd /s /q dist > nul 2>&1
%PYDIR%\python.exe setup.py py2exe
pause