Generate portable dist first.

This commit is contained in:
Bastian Kleineidam 2012-11-08 12:49:18 +01:00
parent e5735e2a5d
commit b655942224

View file

@ -1,4 +1,4 @@
:: Gnerating the LinkChecker Windows .exe installer
:: Generating the LinkChecker Windows .exe installer
:: Copyright (C) 2010-2011 Bastian Kleineidam
:: This program is free software; you can redistribute it and/or modify
:: it under the terms of the GNU General Public License as published by
@ -19,14 +19,9 @@ set UPX_EXE="C:\Software\upx308w\upx.exe"
set SZ_EXE="C:\Programme\7-Zip\7z.exe"
for /f "usebackq tokens=*" %%a in (`%PYDIR%\python.exe setup.py --version`) do set VERSION="%%a"
set PORTDIR=LinkChecker-%VERSION%
set LINKCHECKER_PORTABLE=0
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
:: uncomment for skipping portable dist creation
::goto :dist
echo Building portable distribution
set LINKCHECKER_PORTABLE=1
rd /s /q dist > nul
@ -41,4 +36,11 @@ echo Generating portable distribution file
%SZ_EXE% a -mx=9 LinkChecker-%VERSION%-portable.zip %PORTDIR%
rd /s /q %PORTDIR%
:dist
set LINKCHECKER_PORTABLE=0
rd /s /q build > nul
call %~dp0\build.bat
rd /s /q dist > nul
%PYDIR%\python.exe setup.py py2exe
:finish