blob: 0d000a4808b8ed4972b658e715b638b5aef596fa (
plain)
1
2
3
4
5
6
7
8
9
10
11
|
@REM Build all the kits for coverage.py
@REM Add "upload" onto the command line to also upload.
for %%v in (23 24 25 26 27 31) do (
call \ned\bin\switchpy %%v
python setup.py bdist_wininst %1
)
call \ned\bin\switchpy 26
set TAR_OPTIONS=--group=100
python setup.py sdist --formats=gztar %1
set TAR_OPTIONS=
|