mirror of
https://github.com/mrworf/plexupdate.git
synced 2025-07-05 20:51:16 -07:00
Fix i686/x86 mismatch for 32-bit systems. Fixes #255
This commit is contained in:
parent
175886c615
commit
9961f58bca
1 changed files with 2 additions and 1 deletions
|
@ -53,8 +53,9 @@ AUTODELETE=no
|
||||||
AUTOUPDATE=no
|
AUTOUPDATE=no
|
||||||
AUTOSTART=no
|
AUTOSTART=no
|
||||||
ARCH=$(uname -m)
|
ARCH=$(uname -m)
|
||||||
# patch for Raspberry Pi reporting as armv7l, whereas Plex only offers armv7neon
|
# manual fix for mismatch between Plex arch values and uname -m values
|
||||||
[ "$ARCH" = "armv7l" ] && ARCH="armv7neon"
|
[ "$ARCH" = "armv7l" ] && ARCH="armv7neon"
|
||||||
|
[ "$ARCH" = "i686" ] && ARCH="x86"
|
||||||
BUILD="linux-$ARCH"
|
BUILD="linux-$ARCH"
|
||||||
SHOWPROGRESS=no
|
SHOWPROGRESS=no
|
||||||
WGETOPTIONS="" # extra options for wget. Used for progress bar.
|
WGETOPTIONS="" # extra options for wget. Used for progress bar.
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue