From 08cfc005c3529d4ff63d229b05d75c6ceb88225b Mon Sep 17 00:00:00 2001 From: Arch Librarian Date: Mon, 20 Sep 2004 16:54:52 +0000 Subject: Retries and tweaked dselect script Author: jgg Date: 1999-10-17 20:58:36 GMT Retries and tweaked dselect script --- dselect/update | 7 +++++-- 1 file changed, 5 insertions(+), 2 deletions(-) (limited to 'dselect') diff --git a/dselect/update b/dselect/update index 87dc21aa1..904648428 100755 --- a/dselect/update +++ b/dselect/update @@ -17,7 +17,10 @@ eval $RES # It looks slightly ugly to have a double / in the dpkg output CACHEDIR=`echo $CACHEDIR | sed -e "s|/$||"` -$APTGET $OPTS update +set +e +FAILED=0 +$APTGET $OPTS update || FAILED=1 +set -e echo "Merging Available information" rm -f /var/cache/apt/available @@ -29,4 +32,4 @@ if [ $PROMPT = "yes" ]; then echo "Press enter to continue." && read RES; fi -exit 0 +exit $FAILED -- cgit v1.2.3