From 7cd682528081b80c34e2c9be6848aca4e01cedc7 Mon Sep 17 00:00:00 2001 From: Mitchell Broughton Date: Tue, 19 Nov 2024 13:02:17 -0500 Subject: [PATCH] fixed community extension URL --- install-extensions.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/install-extensions.sh b/install-extensions.sh index fea456b..b34ace8 100644 --- a/install-extensions.sh +++ b/install-extensions.sh @@ -29,7 +29,7 @@ if [ "$INSTALL_EXTENSIONS" = "true" ]; then download_extension ${URL} ${EXTENSION} done for EXTENSION in $(echo "${COMMUNITY_EXTENSIONS}" | tr ',' ' '); do - URL="${COMMUNITY_PLUGIN_URL}/geoserver-${GEOSERVER_VERSION}-${EXTENSION}-plugin.zip" + URL="${COMMUNITY_PLUGIN_URL}/geoserver-$(echo ${GEOSERVER_VERSION} | cut -d'.' -f1,2)-SNAPSHOT-${EXTENSION}-plugin.zip" download_extension ${URL} ${EXTENSION} done echo "Finished download of extensions"