diff options
author | Tom Lane <tgl@sss.pgh.pa.us> | 1999-01-23 21:36:00 +0000 |
---|---|---|
committer | Tom Lane <tgl@sss.pgh.pa.us> | 1999-01-23 21:36:00 +0000 |
commit | 13c7c183f7f221ac28b2528fea716b971707d3d2 (patch) | |
tree | deeeebd921a0bb988d5d217fbdbc71b47b58c5d9 /src | |
parent | 598b628b2761489cc994f2a0f19544598278d2c5 (diff) | |
download | postgresql-13c7c183f7f221ac28b2528fea716b971707d3d2.tar.gz postgresql-13c7c183f7f221ac28b2528fea716b971707d3d2.zip |
Fix unportable test syntax in regression script.
Diffstat (limited to 'src')
-rwxr-xr-x | src/test/regress/regress.sh | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/src/test/regress/regress.sh b/src/test/regress/regress.sh index f64de5a858e..f09680b7f6f 100755 --- a/src/test/regress/regress.sh +++ b/src/test/regress/regress.sh @@ -1,13 +1,13 @@ #!/bin/sh -# $Header: /cvsroot/pgsql/src/test/regress/Attic/regress.sh,v 1.22 1999/01/17 06:19:58 momjian Exp $ +# $Header: /cvsroot/pgsql/src/test/regress/Attic/regress.sh,v 1.23 1999/01/23 21:36:00 tgl Exp $ # -if [ $# -eq 0 ]; +if [ $# -eq 0 ] then - echo "Syntaxe: $0 <portname>" + echo "Syntax: $0 <portname>" exit 1 fi -if [ $1 == "win" ]; +if [ $1 = "win" ] then HOST="-h localhost" else |