From c2dbce328fbcc0bb33558c6044be446d1ffb3a6f Mon Sep 17 00:00:00 2001 From: mrg Date: Fri, 2 Apr 2004 11:12:29 +0000 Subject: oops; exit on failure with the previous. --- gnu/usr.bin/send-pr/send-pr.sh | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) (limited to 'gnu/usr.bin') diff --git a/gnu/usr.bin/send-pr/send-pr.sh b/gnu/usr.bin/send-pr/send-pr.sh index f526b6e2c39..659bfed2f99 100644 --- a/gnu/usr.bin/send-pr/send-pr.sh +++ b/gnu/usr.bin/send-pr/send-pr.sh @@ -82,9 +82,9 @@ else fi fi -TEMP=`mktemp -t p` -BAD=`mktemp -t pbad` -REF=`mktemp -t pf` +TEMP=`mktemp -t p` || exit 1 +BAD=`mktemp -t pbad` || exit 1 +REF=`mktemp -t pf` || exit 1 # find a user name if [ "$LOGNAME" = "" ]; then -- cgit