=================================================================== RCS file: /cvs/openbsd/update_openbsd/release.sh,v retrieving revision 1.16 retrieving revision 1.18 diff -u -r1.16 -r1.18 --- openbsd/update_openbsd/release.sh 2008/02/13 16:47:50 1.16 +++ openbsd/update_openbsd/release.sh 2008/04/16 21:54:28 1.18 @@ -1,5 +1,5 @@ #!/bin/sh -# $RedRiver: release.sh,v 1.15 2008/02/13 16:31:47 andrew Exp $ +# $RedRiver: release.sh,v 1.17 2008/04/16 20:49:54 andrew Exp $ # # Copyright (c) 2002 - 2007 Steven Roberts # @@ -38,6 +38,9 @@ CVSROOT="anoncvs@rt.fm:/cvs" export CVSROOT +if [ -e ${HOME}/.releaserc ]; then + . ${HOME}/.releaserc +fi # See http://www.openbsd.org/anoncvs.html for instructions on fetching the # sources for the first time. @@ -49,6 +52,7 @@ if [ X"$TAG" == X"HEAD" ]; then _cvstag="" fi + echo "cd $d && cvs -q -z6 update $_cvstag -Pd" cd $d && cvs -q -z6 update $_cvstag -Pd done }