Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion functions/java-jre.bash
Original file line number Diff line number Diff line change
Expand Up @@ -47,7 +47,7 @@ adoptium_fetch_apt() {
if [[ $(getconf LONG_BIT) == 32 ]]; then
if ! cond_redirect wget -nv -O "${cachedir}/${cachefile}" "${URL}/${pkgfile}"; then echo "FAILED (download JVM pkg)"; rm -f "${cachedir}/${cachefile}"; return 1; fi
else
if ! cond_redirect dpkg --configure -a; then echo "FAILED (dpkg)"; return 1; fi
if ! cond_redirect dpkg --configure -a --confnew; then echo "FAILED (dpkg)"; return 1; fi
if cond_redirect apt-get install --download-only --yes "temurin-${1}-jre"; then echo "OK"; else echo "FAILED"; return 1; fi
fi
}
Expand Down