remove checkout error temp file to avoid infinite error reporting

This commit is contained in:
pinkerton%aol.net 2004-11-02 21:44:40 +00:00
parent dd723f8f99
commit 2f0ba6185f

View File

@ -106,6 +106,7 @@ checkout::
real_checkout:
@failed=.cvs-failed.tmp; \
rm -f $$failed; \
cvs_co() { echo "$$@" ; \
("$$@" || touch $$failed) 2>&1 | tee -a $(CVSCO_LOGFILE) && \
if test -f $$failed; then false; else true; fi; }; \