From a13f903119a6106fa55bc11d2d112ee1d4c10ee8 Mon Sep 17 00:00:00 2001 From: Tonye Jack Date: Wed, 29 Nov 2023 14:14:18 -0700 Subject: [PATCH] Update entrypoint.sh --- entrypoint.sh | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/entrypoint.sh b/entrypoint.sh index f4d2046..b2da193 100755 --- a/entrypoint.sh +++ b/entrypoint.sh @@ -39,8 +39,7 @@ if [[ "$(uname -s)" == "Linux" ]]; then elif [[ "$(uname -s)" == "NT"* ]] || [[ "$(uname -s)" == "MINGW"* ]] || [[ "$(uname -s)" == *"MSYS"* ]]; then choco install "postgresql$INPUT_POSTGRESQL_VERSION" -y --no-progress --use-download-cache elif [[ "$(uname -s)" == "Darwin" ]]; then - brew update - brew install --force "postgresql@$INPUT_POSTGRESQL_VERSION" + HOMEBREW_NO_AUTO_UPDATE=1 brew install --force "postgresql@$INPUT_POSTGRESQL_VERSION" else echo "Unsupported OS" exit 1