diff options
author | Ned Batchelder <ned@nedbatchelder.com> | 2009-08-30 21:39:41 -0400 |
---|---|---|
committer | Ned Batchelder <ned@nedbatchelder.com> | 2009-08-30 21:39:41 -0400 |
commit | 2cc824e072170d79b0b7644ac5c9ede6f96a8f94 (patch) | |
tree | 502da16a9d95d883eb8a0f09437f3d45638b1da5 | |
parent | 077d09387d98f04a0f2999a3d2f752195271ed9e (diff) | |
download | python-coveragepy-git-2cc824e072170d79b0b7644ac5c9ede6f96a8f94.tar.gz |
Force a group id of 100 when building the source tar.gz. Fixes issue #7.
-rw-r--r-- | allkits.cmd | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/allkits.cmd b/allkits.cmd index d69a33a4..26d00611 100644 --- a/allkits.cmd +++ b/allkits.cmd @@ -5,5 +5,7 @@ python setup.py bdist_wininst call \ned\bin\switchpy 25
python setup.py bdist_wininst
call \ned\bin\switchpy 26
-python setup.py sdist --formats=gztar
python setup.py bdist_wininst
+set TAR_OPTIONS=--group=100
+python setup.py sdist --formats=gztar
+set TAR_OPTIONS=
|