[Commits] (heikki) Bug 1774, better CVS options.
commits at osafoundation.org
commits at osafoundation.org
Wed Sep 1 14:19:53 PDT 2004
Commit by: heikki
Modified files:
hardhat/buildscripts/newchandler.py 1.36 1.37
Log message:
Bug 1774, better CVS options.
ViewCVS links:
http://cvs.osafoundation.org/index.cgi/hardhat/buildscripts/newchandler.py.diff?r1=text&tr1=1.36&r2=text&tr2=1.37
Index: hardhat/buildscripts/newchandler.py
diff -u hardhat/buildscripts/newchandler.py:1.36 hardhat/buildscripts/newchandler.py:1.37
--- hardhat/buildscripts/newchandler.py:1.36 Tue Aug 31 20:36:22 2004
+++ hardhat/buildscripts/newchandler.py Wed Sep 1 14:19:52 2004
@@ -82,7 +82,7 @@
log.write("- - - - tree setup - - - - - - -\n")
outputList = hardhatutil.executeCommandReturnOutputRetry(
- [cvsProgram, "-q", "checkout", cvsVintage, "chandler"])
+ [cvsProgram, "-q -z3", "checkout", cvsVintage, "chandler"])
hardhatutil.dumpOutputList(outputList, log)
os.chdir(chanDir)
@@ -213,7 +213,7 @@
# print "seeing if we need to update", module
log.write("Seeing if we need to update " + module + "\n")
outputList = hardhatutil.executeCommandReturnOutputRetry(
- [cvsProgram, "-qn", "update", "-d", cvsVintage])
+ [cvsProgram, "-qn -z3", "update", "-d", cvsVintage])
# hardhatutil.dumpOutputList(outputList, log)
(filenameChanged, changesAtAll) = NeedsUpdate(outputList, filename)
if changesAtAll:
@@ -223,7 +223,7 @@
log.write("Getting changed sources\n")
outputList = hardhatutil.executeCommandReturnOutputRetry(
- [cvsProgram, "-q", "update", "-Ad"])
+ [cvsProgram, "-q -z3", "update", "-dP", cvsVintage])
hardhatutil.dumpOutputList(outputList, log)
else:
More information about the Commits
mailing list