0
0
Fork 0
mirror of https://github.com/tj-actions/install-postgresql.git synced 2024-12-20 01:18:18 +00:00

allow v10 just don't test it

This commit is contained in:
Brennan Colberg 2023-11-22 06:02:09 -08:00 committed by Tonye Jack
parent 04c1ded2c2
commit 8e9ae1dcc5

View file

@ -12,9 +12,9 @@ if ! [[ "$INPUT_POSTGRESQL_VERSION" =~ ^[0-9]+$ ]]; then
exit 1 exit 1
fi fi
# Check if the input is between 11 and 16 (inclusive) # Check if the input is between 10 and 16 (inclusive)
if (( INPUT_POSTGRESQL_VERSION < 11 || INPUT_POSTGRESQL_VERSION > 16 )); then if (( INPUT_POSTGRESQL_VERSION < 10 || INPUT_POSTGRESQL_VERSION > 16 )); then
echo "Error: $INPUT_POSTGRESQL_VERSION is not between 11 and 16 (inclusive)." echo "Error: $INPUT_POSTGRESQL_VERSION is not between 10 and 16 (inclusive)."
exit 1 exit 1
fi fi