diff --git a/docker/scripts/download-plugins.sh b/docker/scripts/download-plugins.sh index 1b79ca0a..7638cd56 100755 --- a/docker/scripts/download-plugins.sh +++ b/docker/scripts/download-plugins.sh @@ -22,7 +22,7 @@ PLUGINS=(geoipfilter kms pubsub eventstore eventsearch auth) for PLUGIN in "${PLUGINS[@]}"; do URL="https://github.com/sftpgo/sftpgo-plugin-${PLUGIN}/releases/latest/download/sftpgo-plugin-${PLUGIN}-linux-${SUFFIX}" DEST="/usr/local/bin/sftpgo-plugin-${PLUGIN}" - + echo "Downloading ${PLUGIN}..." if curl --fail --silent --show-error -L "${URL}" --output "${DEST}"; then chmod 755 "${DEST}" @@ -33,4 +33,3 @@ for PLUGIN in "${PLUGINS[@]}"; do done echo "All plugins downloaded successfully" -