mirror of https://github.com/postgres/postgres
Fix unportable test syntax in regression script.
This commit is contained in:
parent
598b628b27
commit
13c7c183f7
|
@ -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
|
||||
|
|
Loading…
Reference in New Issue