From 1da95fe2e42ff271777d263db3c867da4550041c Mon Sep 17 00:00:00 2001 From: Bastian Kleineidam Date: Wed, 25 May 2011 20:06:49 +0200 Subject: [PATCH] Add comment how to skip windows portable dist creation. --- windows/dist.bat | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/windows/dist.bat b/windows/dist.bat index 03a885f7..53cda854 100644 --- a/windows/dist.bat +++ b/windows/dist.bat @@ -23,6 +23,8 @@ rd /s /q build > nul call %~dp0\build.bat rd /s /q dist > nul %PYDIR%\python.exe setup.py py2exe +:: uncomment for skipping portable dist creation +::goto :finish echo Building portable distribution rd /s /q %PORTDIR% > nul @@ -34,3 +36,5 @@ for /r %PORTDIR% %%f in (*.pyd,*.exe) do %UPX_EXE% "%%f" --best echo Generating portable distribution file %SZ_EXE% a -mx=9 -md=32m LinkChecker-%VERSION%-portable.zip %PORTDIR% rd /s /q %PORTDIR% + +:finish