Skip to Content.
Sympa Menu

sm-sorcery-bugs - [SM-Sorcery-Bugs] [Bug 3265] cvs export ability

sm-sorcery-bugs AT lists.ibiblio.org

Subject: Bugs for Sorcery are reported here

List archive

Chronological Thread  
  • From: bugzilla-daemon AT metalab.unc.edu
  • To: sm-sorcery-bugs AT lists.ibiblio.org
  • Subject: [SM-Sorcery-Bugs] [Bug 3265] cvs export ability
  • Date: Sun, 4 May 2003 19:34:48 -0400

http://bugs.sourcemage.org/show_bug.cgi?id=3265





------- Additional Comments From seth AT tautology.org 2003-05-04 19:34 -------
Sorry, got the != backwards. (probably should reverse them and use == in the
code ;) )

But now I see that there is a reason to still use checkout on other stuff.
Looks like a good proposal. So the diff would then be:

< message "${MESSAGE_COLOR}Running cvs checkout...${DEFAULT_COLOR}"
< cvs $CVS_COMPRESSION -q -d$CVS_ROOT checkout -r $CVS_TAG -d $S_FILE
$CVS_MODULE
> if [ "$CVS_TAG" == 'HEAD' -o "$CVS_TAG" == 'MAIN' ] ; then
> message "${MESSAGE_COLOR}Running cvs checkout...${DEFAULT_COLOR}"
> cvs $CVS_COMPRESSION -q -d$CVS_ROOT checkout -r $CVS_TAG -d $S_FILE
$CVS_MODULE
> else
> # if CGS_TAG is not HEAD or MAIN, use export, losing ability to update,
> # but allowing MD5s to work on static releases.
> message "${MESSAGE_COLOR}Running cvs export...${DEFAULT_COLOR}"
> cvs $CVS_COMPRESSION -q -d$CVS_ROOT export -r $CVS_TAG -d $S_FILE
$CVS_MODULE
> fi

Looks good to me.



------- You are receiving this mail because: -------
You are the assignee for the bug, or are watching the assignee.




Archive powered by MHonArc 2.6.24.

Top of Page