fix typos

This commit is contained in:
Anastasia Lubennikova
2024-10-07 13:47:55 +01:00
parent 0151deb76a
commit 8c6a83659a

View File

@@ -118,13 +118,13 @@ RUN apt update && \
# and also we must check backward compatibility with older versions of PostGIS.
#
# To move faster, use newer versions only for v17
RUN case "${PG_VERSION}" in
RUN case "${PG_VERSION}" in \
"v17") \
export SFCGAL_VERSION=1.5.2 \
export SFCGAL_CHECKSUM=b946b3c20d53f6e2703046085f0fcfea6c1a4081163f7bedd30b1195801efdd2 \
;; \
"v14" | "v15" | "v16") \
export SFCGAL_VERSION=1.3.10
export SFCGAL_VERSION=1.3.10 \
export SFCGAL_CHECKSUM=4e39b3b2adada6254a7bdba6d297bb28e1a9835a9f879b74f37e2dab70203232 \
;; \
*) \
@@ -142,7 +142,7 @@ RUN case "${PG_VERSION}" in
ENV PATH="/usr/local/pgsql/bin:$PATH"
# Postgis 3.5.0 supports v17
RUN case "${PG_VERSION}" in
RUN case "${PG_VERSION}" in \
"v17") \
export POSTGIS_VERSION=3.5.0 \
export POSTGIS_CHECKSUM=ca698a22cc2b2b3467ac4e063b43a28413f3004ddd505bdccdd74c56a647f510 \