From 42692b0e3d4b3d2004fe0b280fce9d71c2962128 Mon Sep 17 00:00:00 2001 From: Tonye Jack <jtonye@ymail.com> Date: Thu, 7 Sep 2023 20:58:26 -0600 Subject: [PATCH] Update entrypoint.sh --- entrypoint.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/entrypoint.sh b/entrypoint.sh index d82bf9a..08b36ec 100755 --- a/entrypoint.sh +++ b/entrypoint.sh @@ -36,7 +36,7 @@ if [[ "$(uname -s)" == "Linux" ]]; then # Install PostgreSQL sudo apt-get install -y "postgresql-$INPUT_POSTGRESQL_VERSION" -elif [[ "$(uname -s)" == "NT"* ]]; then +elif [[ "$(uname -s)" == "NT"* ]] || [[ "$(uname -s)" == "MINGW"* ]] || [[ "$(uname -s)" == *"MSYS"* ]]; then choco install postgresql --version="$INPUT_POSTGRESQL_VERSION" -y elif [[ "$(uname -s)" == "Darwin" ]]; then brew update