From: Bruce Momjian Date: Tue, 4 Dec 2012 04:44:18 +0000 (-0500) Subject: Restore set -x in pg_upgrade/test.sh, so the user can see what is being X-Git-Tag: REL9_3_BETA1~634 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=2f227656076aded21673fe4b5a831fe28e76c785;p=postgresql Restore set -x in pg_upgrade/test.sh, so the user can see what is being executed. --- diff --git a/contrib/pg_upgrade/test.sh b/contrib/pg_upgrade/test.sh index 64de7df3be..503395311e 100644 --- a/contrib/pg_upgrade/test.sh +++ b/contrib/pg_upgrade/test.sh @@ -71,6 +71,9 @@ logdir=$PWD/log rm -rf "$logdir" mkdir "$logdir" +# enable echo so the user can see what is being executed +set -x + $oldbindir/initdb -N $oldbindir/pg_ctl start -l "$logdir/postmaster1.log" -o '-F' -w if "$MAKE" -C "$oldsrc" installcheck; then