Skip to content

Commit a7f3159

Browse files
authored
Add support for postgres version 15 (#4)
1 parent 74a8fbe commit a7f3159

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

install-pg-dump.sh

+2-2
Original file line numberDiff line numberDiff line change
@@ -8,8 +8,8 @@ if [[ -z "$POSTGRES_VERSION" ]]; then
88
exit 1
99
fi
1010

11-
if [[ "$POSTGRES_VERSION" != @(11|12|13|14) ]]; then
12-
echo "POSTGRES_VERSION must be one of 11, 12, 13, 14"
11+
if [[ "$POSTGRES_VERSION" != @(11|12|13|14|15) ]]; then
12+
echo "POSTGRES_VERSION must be one of 11, 12, 13, 14, 15"
1313
exit 1
1414
fi
1515

0 commit comments

Comments
 (0)