mirror of
https://github.com/mrworf/plexupdate.git
synced 2025-08-19 21:03:19 -07:00
Add error message specific to raspbian
This commit is contained in:
parent
bcc96e354a
commit
00993decb2
1 changed files with 5 additions and 1 deletions
|
@ -384,7 +384,11 @@ if [ "$VERBOSE" = "yes" ]; then
|
||||||
fi
|
fi
|
||||||
|
|
||||||
if [ -z "${DOWNLOAD}" ]; then
|
if [ -z "${DOWNLOAD}" ]; then
|
||||||
error "Unable to retrieve the URL needed for download (Query DISTRO: $DISTRO, BUILD: $BUILD)"
|
if [ "$DISTRO" = "ubuntu" -a "$BUILD" = "linux-ubuntu-armv7l" ]; then
|
||||||
|
error "Plex Media Server on Raspbian is not officially supported and script cannot download a working package."
|
||||||
|
else
|
||||||
|
error "Unable to retrieve the URL needed for download (Query DISTRO: $DISTRO, BUILD: $BUILD)"
|
||||||
|
fi
|
||||||
if [ ! -z "${RELEASE}" ]; then
|
if [ ! -z "${RELEASE}" ]; then
|
||||||
error "It seems release info is missing a link"
|
error "It seems release info is missing a link"
|
||||||
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"
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue