More verbosity

This commit is contained in:
shockrah 2024-09-26 21:22:23 -07:00
parent 0468b848bb
commit 0e0f32aa68

View File

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