Fixed issue where -r wouldn't work without -S

This commit is contained in:
Henric Andersson 2016-07-21 20:01:44 -07:00
commit 4244a57b52

View file

@ -430,7 +430,11 @@ if [ $? -ne 0 ]; then
fi
if [ "${PRINT_URL}" == "yes" ]; then
echo "${DOWNLOAD}" >&5
if [ "${QUIET}" = "yes" ] || [ "${SILENT}" = "yes" ]; then
echo "${DOWNLOAD}" >&5
else
echo "${DOWNLOAD}"
fi
cronexit 0
fi