summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorbwarsaw2002-12-11 12:42:53 +0000
committerbwarsaw2002-12-11 12:42:53 +0000
commitb4b90dffeb0f7c0d4b6c188549558a5a6ef389c7 (patch)
tree7bb9ad3341dbad3072d79352383f6c2834c1a9e4
parent49ceb01057eab57371a098b21aa50b0ef328c633 (diff)
downloadmailman-b4b90dffeb0f7c0d4b6c188549558a5a6ef389c7.tar.gz
mailman-b4b90dffeb0f7c0d4b6c188549558a5a6ef389c7.tar.zst
mailman-b4b90dffeb0f7c0d4b6c188549558a5a6ef389c7.zip
cvsdo(): Use "cvs -d" instead of relying on $CVSROOT. I don't know
why this broke, perhaps my recent upgrade to RH7.3?
-rwxr-xr-xadmin/bin/Release.py4
1 files changed, 3 insertions, 1 deletions
diff --git a/admin/bin/Release.py b/admin/bin/Release.py
index 91ec7478e..abe3ccb3e 100755
--- a/admin/bin/Release.py
+++ b/admin/bin/Release.py
@@ -82,7 +82,9 @@ def tag2rel(tagname):
return '"Release_%s"' % tagname.replace('.', '_')
def cvsdo(cvscmd):
- os.system('cvs %s' % cvscmd)
+ # I don't know why -d is suddenly required -- $CVSROOT used to work just
+ # fine but now (RH7.3) doesn't at all.
+ os.system('cvs -d %s %s' % (os.environ['CVSROOT'], cvscmd))
def tag_release(tagname, retag):
# Convert dots in tagname to underscores