summaryrefslogtreecommitdiff
path: root/allkits.cmd
diff options
context:
space:
mode:
authorNed Batchelder <ned@nedbatchelder.com>2010-01-10 21:20:36 -0500
committerNed Batchelder <ned@nedbatchelder.com>2010-01-10 21:20:36 -0500
commit04962959fd524e0706a36af7b8ba378a70cbc7bf (patch)
tree0620590d2e542d10435e5cb562ce4cebb2756db9 /allkits.cmd
parent027a753f5d8a038413b29a77c2fc2180aadf290e (diff)
downloadpython-coveragepy-git-04962959fd524e0706a36af7b8ba378a70cbc7bf.tar.gz
Use loops instead of all that repetition.
Diffstat (limited to 'allkits.cmd')
-rw-r--r--allkits.cmd19
1 files changed, 5 insertions, 14 deletions
diff --git a/allkits.cmd b/allkits.cmd
index a0685ee9..0d000a48 100644
--- a/allkits.cmd
+++ b/allkits.cmd
@@ -1,20 +1,11 @@
@REM Build all the kits for coverage.py
@REM Add "upload" onto the command line to also upload.
-call \ned\bin\switchpy 23
-python setup.py bdist_wininst %1
-call \ned\bin\switchpy 24
-python setup.py bdist_wininst %1
-call \ned\bin\switchpy 25
-python setup.py bdist_wininst %1
-call \ned\bin\switchpy 26
-python setup.py bdist_wininst %1
-call \ned\bin\switchpy 27
-python setup.py bdist_wininst %1
+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=
-
-@REM Py3k
-call \ned\bin\switchpy 31
-python setup.py bdist_wininst %1