From 9b97958f235051f029a5818d755fadd8f419b0fc Mon Sep 17 00:00:00 2001 From: Joel Jacobson Date: Fri, 14 Jan 2011 13:47:34 +0100 Subject: [PATCH] use $PGSRC instead of hard-coded postgresql source dir in test.sh --- test.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/test.sh b/test.sh index 7497a0c..15d2a2c 100755 --- a/test.sh +++ b/test.sh @@ -1,7 +1,7 @@ #!/bin/sh dropdb test 2> /dev/null createdb test -psql test -f /crypt/postgresql-8.4.6/contrib/pgcrypto/pgcrypto.sql +psql test -f $PGSRC/contrib/pgcrypto/pgcrypto.sql psql -f sql/uninstall.sql test 2> /dev/null psql -f sql/install.sql test psql -f test.sql test 1>test.stdout.tmp 2>test.stderr.tmp