jvanzyl 2004/04/09 07:11:57 Modified: . ci.sh Log: Revision Changes Path 1.2 +22 -7 maven-components/ci.sh Index: ci.sh =================================================================== RCS file: /home/cvs/maven-components/ci.sh,v retrieving revision 1.1 retrieving revision 1.2 diff -u -r1.1 -r1.2 --- ci.sh 9 Apr 2004 04:27:28 -0000 1.1 +++ ci.sh 9 Apr 2004 14:11:57 -0000 1.2 @@ -1,23 +1,38 @@ #!/bin/sh -# To run this script on your machine you must set: +# ---------------------------------------------------------------------------------- +# To run this script on your machine you must: # -# MBOOT_HOME -# PATH=$PATH:$MBOOT_HOME/bin -# MAVEN_HOME -# PATH=$PATH:$MAVEN_HOME/bin +# 1. export MBOOT_HOME=~/mboot +# +# 2. export MAVEN_HOME=~/maven +# +# 3. export PATH=$PATH:$MBOOT:$MAVEN_HOME/bin +# +# 4. Your ~/build.properties must have: maven.repo.local = ~/path/to/repo +# +# ---------------------------------------------------------------------------------- DIR=maven2 REPO=maven-repo-local [EMAIL PROTECTED] [EMAIL PROTECTED] + +# ---------------------------------------------------------------------------------- + +# Wipe out the working directory and the repository and start entirely +# from scratch. rm -rf $DIR > /dev/null 2>&1 rm -rf $REPO > /dev/null 2>&1 mkdir $DIR mkdir $REPO +# ---------------------------------------------------------------------------------- + DATE=`date` -echo "From: [EMAIL PROTECTED]" > log -echo "To: [EMAIL PROTECTED]" >> log +echo "From: $FROM" > log +echo "To: $TO" >> log echo "Subject: Maven bootstrap on beaver [$DATE]" >> log echo "" >> log
--------------------------------------------------------------------- To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED]
