Fix update_db.sh to set eg_version correctly
authorDan Scott <dscott@laurentian.ca>
Tue, 4 Oct 2011 03:35:35 +0000 (23:35 -0400)
committerDan Scott <dscott@laurentian.ca>
Tue, 4 Oct 2011 03:35:35 +0000 (23:35 -0400)
psql wants --set=VARNAME=VALUE, we had -set VARNAME=VALUE; tested this
fix and it works with PostgreSQL 9.0.

Signed-off-by: Dan Scott <dscott@laurentian.ca>
build/tools/update_db.sh

index 3177f1b..e93431c 100755 (executable)
@@ -106,7 +106,7 @@ if [ $COUNT -gt 0 ] ; then
     for (( i=0; i<$COUNT; i++ )) ; do
         echo "* Applying ${FILES[$i]}" >&3;   # to the main script STDOUT
         cat ${FILES[$i]};                     # to the psql pipe
-    done | psql -set eg_version="'$EGVERSION'" $PSQL_ACCESS ;
+    done | psql --set=eg_version="'$EGVERSION'" $PSQL_ACCESS ;
 else
     echo "* Nothing to update";
 fi