Verify plex.tv is providing a checksum before downloading

This commit is contained in:
Alex Malinovich 2017-02-25 21:57:01 -08:00
commit bd061d7ef4

View file

@ -395,6 +395,9 @@ if [ -z "${DOWNLOAD}" ]; then
error "Please try https://plex.tv and confirm it works there before reporting this issue" error "Please try https://plex.tv and confirm it works there before reporting this issue"
fi fi
exit 3 exit 3
elif [ -z "${CHECKSUM}" ]; then
error "Unable to retrieve a checksum for the download. Please try https://plex.tv/downloads before reporting this issue."
exit 3
fi fi
FILENAME="$(basename 2>/dev/null ${DOWNLOAD})" FILENAME="$(basename 2>/dev/null ${DOWNLOAD})"