File tree Expand file tree Collapse file tree 2 files changed +4
-8
lines changed Expand file tree Collapse file tree 2 files changed +4
-8
lines changed Original file line number Diff line number Diff line change @@ -4,9 +4,8 @@ WORKDIR /tmp
44COPY ./docker/download_citra.sh /usr/local/bin/download_citra
55RUN apt-get update -y && apt-get install -y jq
66
7- ARG CITRA_CHANNEL=nightly
8- ARG CITRA_RELEASE=2098
9- RUN download_citra ${CITRA_CHANNEL} ${CITRA_RELEASE}
7+ ARG TAG=r0c2f076
8+ RUN download_citra ${TAG}
109
1110FROM devkitpro/devkitarm:latest as devkitarm
1211
Original file line number Diff line number Diff line change 22
33set -euxo pipefail
44
5- CITRA_CHANNEL=$1
6- CITRA_RELEASE=$2
5+ TAG=$1
76
8- RELEASE_API=" https://api.github.com/repos/citra-emu/citra-${CITRA_CHANNEL} /releases/tags/${CITRA_CHANNEL} -${CITRA_RELEASE} "
9-
10- curl " ${RELEASE_API} " |
7+ curl " https://api.github.com/repos/PabloMK7/citra/releases/tags/${TAG} " |
118 jq --raw-output ' .assets[].browser_download_url' |
129 grep -E ' citra-linux-.*[.]tar.gz' |
1310 xargs wget -O citra-linux.tar.gz
You can’t perform that action at this time.
0 commit comments