From c74fb950747058173ff83f07ae973f62e0b5544c Mon Sep 17 00:00:00 2001 From: Mathias Mouly Date: Wed, 21 Feb 2024 12:06:59 +0100 Subject: [PATCH] Revert as 42.7.2 is not yet available --- common/script/installPostgres.sh | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/common/script/installPostgres.sh b/common/script/installPostgres.sh index 2458cd5a..faac9a69 100755 --- a/common/script/installPostgres.sh +++ b/common/script/installPostgres.sh @@ -1,7 +1,8 @@ #!/bin/bash - +set -e # Install the driver for PostgreSQL echo "Install the driver for postgreSQL" cd /tmp -curl -O -k -s https://jdbc.postgresql.org/download/postgresql-42.7.2.jar +curl -O -k -s https://jdbc.postgresql.org/download/postgresql-42.7.1.jar --fail mv postgres* /config/resources +set +e