=================================================================== RCS file: /cvs/openbsd/update_openbsd/release.sh,v retrieving revision 1.20 retrieving revision 1.23 diff -u -r1.20 -r1.23 --- openbsd/update_openbsd/release.sh 2008/05/22 18:45:31 1.20 +++ openbsd/update_openbsd/release.sh 2008/10/11 23:11:58 1.23 @@ -1,5 +1,5 @@ #!/bin/sh -# $RedRiver: release.sh,v 1.19 2008/05/22 17:39:20 andrew Exp $ +# $RedRiver: release.sh,v 1.22 2008/07/08 22:46:01 andrew Exp $ # # Copyright (c) 2002, 2008 Steven Roberts # @@ -21,7 +21,7 @@ ARCH=`machine` DEST="/home/destdir" RELEASE="/home/releasedir" -XSRCDIR="/usr/src/xenocara" +XSRCDIR="/usr/xenocara" PORTSPATH="/usr/ports" if [ -e ${HOME}/.releaserc ]; then @@ -33,13 +33,13 @@ update_sources() { echo "---------- Update sources ----------" +_cvstag=-r$TAG +if [ X"$TAG" == X"HEAD" ]; then + _cvstag="" +fi for d in /usr/src ${XSRCDIR} ${PORTSPATH}; do - _cvstag=-r$TAG - if [ X"$TAG" == X"HEAD" ]; then - _cvstag="" - fi - echo "cd $d && cvs update $_cvstag -Pd" - cd $d && cvs update $_cvstag -Pd + echo "cd $d && opencvs update $_cvstag -Pd" + cd $d && opencvs update $_cvstag -Pd done }