docker: remove trailing whitespace from download script

Signed-off-by: Nicola Murino <nicola.murino@gmail.com>
This commit is contained in:
Nicola Murino 2025-12-29 08:55:46 +01:00
commit 0be7545d9b
No known key found for this signature in database
GPG key ID: 935D2952DEC4EECF

View file

@ -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"