From e93d0bc2a598163568ab3232ab0b900f63e260aa Mon Sep 17 00:00:00 2001 From: Tonye Jack Date: Tue, 12 Sep 2023 10:06:07 -0600 Subject: [PATCH] Updated the install location --- entrypoint.sh | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/entrypoint.sh b/entrypoint.sh index 2eef567..364d8e7 100755 --- a/entrypoint.sh +++ b/entrypoint.sh @@ -35,7 +35,7 @@ if [[ "$(uname -s)" == "Linux" ]]; then sudo apt-get update # Install PostgreSQL - sudo apt-get install -y "postgresql-$INPUT_POSTGRESQL_VERSION" + sudo apt-get apt-get -o Dir::Cache::Archives=/tmp install -y "postgresql-$INPUT_POSTGRESQL_VERSION" elif [[ "$(uname -s)" == "NT"* ]] || [[ "$(uname -s)" == "MINGW"* ]] || [[ "$(uname -s)" == *"MSYS"* ]]; then choco install "postgresql$INPUT_POSTGRESQL_VERSION" -y --no-progress elif [[ "$(uname -s)" == "Darwin" ]]; then @@ -48,7 +48,7 @@ fi echo "Installed postgresql" -echo "Verifying installation..." +echo "Updating PATH..." # Verify installation by running pg_dump directly if [[ "$(uname -s)" == "NT"* ]] || [[ "$(uname -s)" == "MINGW"* ]] || [[ "$(uname -s)" == *"MSYS"* ]]; then