Skip to content

Commit

Permalink
feat: update hard coded JDK version
Browse files Browse the repository at this point in the history
  • Loading branch information
inotia00 committed Nov 26, 2023
1 parent a1a5825 commit 3a8b6f6
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ WORKDIR /app

RUN apt-get --yes update && \
apt-get --yes install git wget java-common libasound2 libxi6 libxtst6 xdg-utils && \
wget -O /app/zulu.deb https://cdn.azul.com/zulu/bin/zulu17.34.19-ca-jdk17.0.3-linux_amd64.deb && \
wget -O /app/zulu.deb https://cdn.azul.com/zulu/bin/zulu17.46.19-ca-jdk17.0.9-linux_amd64.deb && \
yes | dpkg -i /app/zulu.deb && \
rm /app/zulu.deb && \
apt-get -f install
Expand Down
4 changes: 2 additions & 2 deletions utils/checkJDKAndADB.js
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ function getConsts(name) {
case 'jreDir':
return joinPath(
global.revancedDir,
`zulu17.44.53-ca-jre17.0.8.1-${getConsts('platform')}_${getConsts(
`zulu17.46.19-ca-jre17.0.9-${getConsts('platform')}_${getConsts(
'arch'
)}`
);
Expand Down Expand Up @@ -61,7 +61,7 @@ async function downloadJDK(ws) {
const output = joinPath(global.revancedDir, 'JRE.tar.gz');

await dloadFromURL(
`https://cdn.azul.com/zulu/bin/zulu17.44.53-ca-jre17.0.8.1-${getConsts(
`https://cdn.azul.com/zulu/bin/zulu17.46.19-ca-jre17.0.9-${getConsts(
'platform'
)}_${getConsts('arch')}.tar.gz`,
output,
Expand Down

0 comments on commit 3a8b6f6

Please sign in to comment.