1
0
mirror of https://github.com/postgres/postgres.git synced 2025-05-06 19:59:18 +03:00

Have pg_dumpall return proper status on exit

This commit is contained in:
Bruce Momjian 1997-07-12 15:57:31 +00:00
parent e66f5c05eb
commit a89f9731e9

View File

@ -52,5 +52,9 @@ do
echo "${BS}connect template1 $POSTGRES_USER" echo "${BS}connect template1 $POSTGRES_USER"
echo "create database $DATABASE;" echo "create database $DATABASE;"
echo "${BS}connect $DATABASE $POSTGRES_USER" echo "${BS}connect $DATABASE $POSTGRES_USER"
pg_dump "$@" $DATABASE || echo "pg_dump failed on $DATABASE" 1>&2 pg_dump "$@" $DATABASE
if [ "$?" -ne 0 ]
then echo "pg_dump failed on $DATABASE, exiting" 1>&2
exit 1
fi
done done