[Nice-commit] tester cvs-master,NONE,1.1 Project,1.6,1.7
Brought to you by:
bonniot
From: <bo...@us...> - 2003-07-26 12:27:05
|
Update of /cvsroot/nice/tester In directory sc8-pr-cvs1:/tmp/cvs-serv17273 Modified Files: Project Added Files: cvs-master Log Message: Added automatic upload of development version upon success --- NEW FILE: cvs-master --- #! /bin/sh # Wrapper for cvs, that retries seevral times in case of failure # Usage: # cvs <module name> CVS_RSH=ssh cvs -d:ext:bonniot@$CVS_SOURCEFORGE:/cvsroot/nice export \ -rHEAD "$@" Index: Project =================================================================== RCS file: /cvsroot/nice/tester/Project,v retrieving revision 1.6 retrieving revision 1.7 diff -C2 -d -r1.6 -r1.7 *** Project 12 May 2003 17:00:25 -0000 1.6 --- Project 25 Jul 2003 14:01:49 -0000 1.7 *************** *** 5,11 **** if [ ! -r Nice ]; then ! ../cvs Nice || exit 3 wget -O Nice/external/nice-bootstrap.jar http://nice.sf.net/nice.jar || exit 3 fi cd Nice && make world --- 5,16 ---- if [ ! -r Nice ]; then ! ../cvs${NICE_MASTER:+-master} Nice || exit 3 wget -O Nice/external/nice-bootstrap.jar http://nice.sf.net/nice.jar || exit 3 fi cd Nice && make world + + # If we got here, the whole bootstrap process succeeded. + if [ NICE_MASTER ]; then + scp ./share/java/nice.jar bo...@sh...:/home/groups/n/ni/nice/htdocs + fi |