Skip to content

Commit

Permalink
TEMP hack to make supportType/ReleaseStatus=Unknown as stable for 11.5
Browse files Browse the repository at this point in the history
This is because its removed in download, but we still need to have
latest as 11.5 otherwise users will go back a version.
  • Loading branch information
grooverdan committed Nov 14, 2024
1 parent 85df6a9 commit 58570c6
Showing 1 changed file with 4 additions and 0 deletions.
4 changes: 4 additions & 0 deletions generate-stackbrew-library.sh
Original file line number Diff line number Diff line change
Expand Up @@ -80,6 +80,9 @@ for version in "${versions[@]}"; do
supportType="$(grep -m1 'support-type:' "$version/Dockerfile" | cut -d':' -f2)"

case $releaseStatus in
Unknown)
releaseStatus=Stable
;&
Stable)
suffix=
;;
Expand All @@ -103,6 +106,7 @@ for version in "${versions[@]}"; do
;;
*)
supportType=Unknown
supportType=STS
esac

if [ "$version" != "$fullVersion" ]; then
Expand Down

0 comments on commit 58570c6

Please sign in to comment.