Improve shellcheck
All checks were successful
hadolint Dockerfile / build (push) Successful in 7s
shellchecking ansible-docker.sh / build (push) Successful in 14s

This commit is contained in:
L3D 2023-05-11 23:35:20 +02:00
parent 5b79505fd5
commit 250e6de8a4
No known key found for this signature in database
GPG key ID: AD65B920933B4B20

View file

@ -29,7 +29,7 @@ rsync::transfer() {
: "${HOSTS?Destination Server}"
: "${USER?Destination User}"
pushd "${GITHUB_WORKSPACE}"
rsync --progress ${SOURCE} ${USER}@${HOSTS}:${DESTINATION}
rsync --progress "${SOURCE}" "${USER}@${HOSTS}:${DESTINATION}"
}
rsync::ssh