You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
if [ -z"$currentFrom" ];then# if the current LTS is also the latest Java version, there may be no COPY --from
242
+
currentFrom="$from"
243
+
fi
222
244
currentFromTag="${currentFrom##*:}"
223
245
current="${currentFromTag%%-*}"
224
246
;;
@@ -251,6 +273,9 @@ for branch in "${branches[@]}"; do
251
273
if [ "$jdk"='jdk-lts-and-current' ] && [ "$variant"!='graal' ];then
252
274
# *technically*, we could re-use "currentFrom" that we scraped above, but there's a lot of conditional logic between here and there so it's safer to just re-scrape it
0 commit comments