From 2648c4c9a5e5c075c5168c466a16d6db6f99179c Mon Sep 17 00:00:00 2001 From: Andreas Mieke Date: Fri, 29 Dec 2023 13:28:13 +0100 Subject: [PATCH] fix: Make scp verbose, so progress can be tracked --- plugin.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/plugin.sh b/plugin.sh index 7fb7cd8..361e971 100644 --- a/plugin.sh +++ b/plugin.sh @@ -5,4 +5,4 @@ echo "${PLUGIN_SSH_KEY}" > "/root/.ssh/id_rsa" chmod 0600 /root/.ssh/id_rsa echo "${PLUGIN_SSH_KNOWN_HOSTS}" > "/root/.ssh/known_hosts" chmod 0600 /root/.ssh/known_hosts -scp -B ${PLUGIN_EXTRA_FLAGS} ${PLUGIN_SOURCE} ${PLUGIN_DESTINATION} \ No newline at end of file +scp -Bv ${PLUGIN_EXTRA_FLAGS} ${PLUGIN_SOURCE} ${PLUGIN_DESTINATION} \ No newline at end of file