fixed community extension URL

pull/121/head
Mitchell Broughton 2024-11-19 13:02:17 -05:00
parent 2eb3ad3976
commit 7cd6825280
1 changed files with 1 additions and 1 deletions

View File

@ -29,7 +29,7 @@ if [ "$INSTALL_EXTENSIONS" = "true" ]; then
download_extension ${URL} ${EXTENSION} download_extension ${URL} ${EXTENSION}
done done
for EXTENSION in $(echo "${COMMUNITY_EXTENSIONS}" | tr ',' ' '); do 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} download_extension ${URL} ${EXTENSION}
done done
echo "Finished download of extensions" echo "Finished download of extensions"