From 0e0f32aa68328643500673dbe1849fd2354d7989 Mon Sep 17 00:00:00 2001 From: shockrah Date: Thu, 26 Sep 2024 21:22:23 -0700 Subject: [PATCH] More verbosity --- entrypoint.sh | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/entrypoint.sh b/entrypoint.sh index a0fd28c..6bd7338 100755 --- a/entrypoint.sh +++ b/entrypoint.sh @@ -8,8 +8,8 @@ if [[ "$INPUT_KEY" ]]; then echo -e "${INPUT_KEY}" > key # Creates a file with the key content chmod 400 key # Set the key as Read-Only - rsync -e "ssh -p $INPUT_PORT -o StrictHostKeyChecking=no -i key" \ - -r "$INPUT_ORIGIN" \ + rsync -v --stats -e "ssh -p $INPUT_PORT -o StrictHostKeyChecking=no -i key" \ + "$INPUT_ORIGIN" \ "$INPUT_USERNAME"@"$INPUT_HOST":"$INPUT_DESTINATION" fi time=$(date)