]> granicus.if.org Git - postgresql/commitdiff
Fix unportable test syntax in regression script.
authorTom Lane <tgl@sss.pgh.pa.us>
Sat, 23 Jan 1999 21:36:00 +0000 (21:36 +0000)
committerTom Lane <tgl@sss.pgh.pa.us>
Sat, 23 Jan 1999 21:36:00 +0000 (21:36 +0000)
src/test/regress/regress.sh

index f64de5a858e5e990ff16fcd0c911a7c3b9a43ea5..f09680b7f6fe583442c8407ad92ece445fa6173d 100755 (executable)
@@ -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