From 0be7545d9bce0502ee703c959dfa7f0504c76618 Mon Sep 17 00:00:00 2001 From: Nicola Murino Date: Mon, 29 Dec 2025 08:55:46 +0100 Subject: [PATCH] docker: remove trailing whitespace from download script Signed-off-by: Nicola Murino --- docker/scripts/download-plugins.sh | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) 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" -