From 5c8c26b650008d7af1305d5e304fb5a2c8f3e85c Mon Sep 17 00:00:00 2001 From: Judd Vinet Date: Tue, 17 Aug 2004 19:17:36 +0000 Subject: added some sanity checks around the cvs export calls --- db-unstable | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) (limited to 'db-unstable') diff --git a/db-unstable b/db-unstable index 0ab9983..e562e58 100755 --- a/db-unstable +++ b/db-unstable @@ -1,5 +1,5 @@ #!/bin/bash -# $Id: db-unstable,v 1.11 2004/07/03 20:28:11 judd Exp $ +# $Id: db-unstable,v 1.12 2004/08/17 19:17:36 judd Exp $ uid=`id -u` repoid=3 @@ -38,6 +38,10 @@ mkdir $TMPDIR; [ $? -gt 0 ] && exit 1 echo "==> Generating Pacman Database for UNSTABLE..." >&2 cd $TMPDIR CVS_RSH=ssh CVSROOT=:ext:cvs.archlinux.org:/home/cvs-unstable cvs -q export -r CURRENT unstable +if [ $? -gt 0 ]; then + echo "==> CVS export failed!" + exit 1 +fi # check again if [ -d /tmp/.gensync ]; then echo "error: someone else is currently running gensync!" -- cgit v1.2.3-54-g00ecf