Skip to content

Commit 9dd001a

Browse files
committed
Fix-up armv8 build
1 parent b0778e0 commit 9dd001a

File tree

2 files changed

+7
-7
lines changed

2 files changed

+7
-7
lines changed

Dockerfile.builder

+5-5
Original file line numberDiff line numberDiff line change
@@ -5,13 +5,13 @@ ARG ARCH=
55
RUN apk add --update --no-cache curl --virtual .build-deps && \
66
if [[ -z "$PMS_URL" ]]; then \
77
if [ "$ARCH" == "amd64" ]; then \
8-
DL_INDEX=2; \
9-
elif [ "$ARCH" == "arm32v6" ]; then \
10-
DL_INDEX=0; \
8+
DL_INDEX=1; \
9+
elif [ "$ARCH" == "armhf" ]; then \
10+
DL_INDEX=3; \
1111
else \
12-
DL_INDEX=0; \
12+
DL_INDEX=2; \
1313
fi; \
14-
DL_URL=`curl -s 'https://plex.tv/api/downloads/1.json' | python3 -c "import sys, json; print(json.load(sys.stdin)['nas']['Synology']['releases'][${DL_INDEX}]['url'])"`; \
14+
DL_URL=`curl -s 'https://plex.tv/pms/downloads/5.json' | python3 -c "import sys, json; print(json.load(sys.stdin)['nas']['Synology']['releases'][${DL_INDEX}]['url'])"`; \
1515
else \
1616
DL_URL="$PMS_URL"; \
1717
fi; \

Makefile

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
1-
VERSION ?= 1.14.1
1+
VERSION ?= 1.15.1
22
CACHE ?= --no-cache=1
3-
FULLVERSION ?= 1.14.1
3+
FULLVERSION ?= 1.15.1
44
archs ?= amd64 armhf arm64v8 aarch64
55
PMS_URL ?=
66

0 commit comments

Comments
 (0)