From 5bd0d2eb88e8a83ec440d27aaed122bdb37f6dbb Mon Sep 17 00:00:00 2001 From: Brennan Colberg Date: Tue, 28 Nov 2023 08:18:45 -0800 Subject: [PATCH] Update entrypoint.sh Co-authored-by: Tonye Jack --- entrypoint.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/entrypoint.sh b/entrypoint.sh index 41d217d..d44bfdd 100755 --- a/entrypoint.sh +++ b/entrypoint.sh @@ -13,7 +13,7 @@ if ! [[ "$INPUT_POSTGRESQL_VERSION" =~ ^[0-9]+$ ]]; then fi # Check if the input is between 11 and 16 (inclusive) -if (( INPUT_POSTGRESQL_VERSION < 10 || INPUT_POSTGRESQL_VERSION > 16 )); then +if (( INPUT_POSTGRESQL_VERSION < 11 || INPUT_POSTGRESQL_VERSION > 16 )); then echo "Error: $INPUT_POSTGRESQL_VERSION is not between 11 and 16 (inclusive)." exit 1 fi