crank of the verbosity. Add another rsync call just to test if output is not being reported to travis

This commit is contained in:
Isaac Connor 2019-11-19 09:36:43 -05:00
parent 61e27bcb29
commit e4c23c3100
1 changed files with 4 additions and 2 deletions

View File

@ -26,8 +26,8 @@ if [ "${TRAVIS_EVENT_TYPE}" == "cron" ] || [ "${OS}" == "debian" ] || [ "${OS}"
echo "Target subfolder set to $targetfolder"
echo
if [ "${USE_SFTP}" == "yes" ]; then
echo "Running \$(rsync -e 'ssh -v' build/* zmrepo@zmrepo.zoneminder.com:${targetfolder}/ 2>&1)"
results="$(rsync -v -e 'ssh -v -O ControlMaster=no' build/* zmrepo@zmrepo.zoneminder.com:${targetfolder}/ 2>&1)"
echo "Running \$(rsync -v -e 'ssh -vvv' build/* zmrepo@zmrepo.zoneminder.com:${targetfolder}/ 2>&1)"
results="$(rsync -v -e 'ssh -vvv' build/* zmrepo@zmrepo.zoneminder.com:${targetfolder}/ 2>&1)"
if [ -z "$results" ]; then
echo
echo "Files copied successfully."
@ -37,6 +37,8 @@ if [ "${TRAVIS_EVENT_TYPE}" == "cron" ] || [ "${OS}" == "debian" ] || [ "${OS}"
echo "ERROR: Attempt to rsync to zmrepo.zoneminder.com failed!"
echo "rsync gave the following error message:"
echo \"$results\"
# Doing this again just for the output
rsync -v -e 'ssh -vvv' build/* zmrepo@zmrepo.zoneminder.com:${targetfolder}/ 2>&1
echo
exit 99
fi