diff options
author | Judd Vinet <judd@archlinux.org> | 2004-08-20 01:47:03 +0200 |
---|---|---|
committer | Judd Vinet <judd@archlinux.org> | 2004-08-20 01:47:03 +0200 |
commit | e11622c10fa4b75d264c78c668282f5b21e6f158 (patch) | |
tree | c54cba3a86085e44e7e014fb33984b3f0c80c3f1 /db-unstable | |
parent | 5c8c26b650008d7af1305d5e304fb5a2c8f3e85c (diff) | |
download | dbscripts-e11622c10fa4b75d264c78c668282f5b21e6f158.tar.gz dbscripts-e11622c10fa4b75d264c78c668282f5b21e6f158.tar.xz |
added cleanup calls to db- scripts, removed export-failure checks from db-testing, as its allowed for tesitng
Diffstat (limited to 'db-unstable')
-rwxr-xr-x | db-unstable | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/db-unstable b/db-unstable index e562e58..9826222 100755 --- a/db-unstable +++ b/db-unstable @@ -1,5 +1,5 @@ #!/bin/bash -# $Id: db-unstable,v 1.12 2004/08/17 19:17:36 judd Exp $ +# $Id: db-unstable,v 1.13 2004/08/19 23:47:03 judd Exp $ uid=`id -u` repoid=3 @@ -40,11 +40,13 @@ 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!" + cleanup exit 1 fi # check again if [ -d /tmp/.gensync ]; then echo "error: someone else is currently running gensync!" + cleanup exit 1 fi /usr/bin/gensync $TMPDIR/unstable $TMPDIR/unstable.db.tar.gz /home/ftp/unstable/os/i686 |