Skip to content

Commit 58570c6

Browse files
committed
TEMP hack to make supportType/ReleaseStatus=Unknown as stable for 11.5
This is because its removed in download, but we still need to have latest as 11.5 otherwise users will go back a version.
1 parent 85df6a9 commit 58570c6

File tree

1 file changed

+4
-0
lines changed

1 file changed

+4
-0
lines changed

generate-stackbrew-library.sh

+4
Original file line numberDiff line numberDiff line change
@@ -80,6 +80,9 @@ for version in "${versions[@]}"; do
8080
supportType="$(grep -m1 'support-type:' "$version/Dockerfile" | cut -d':' -f2)"
8181

8282
case $releaseStatus in
83+
Unknown)
84+
releaseStatus=Stable
85+
;&
8386
Stable)
8487
suffix=
8588
;;
@@ -103,6 +106,7 @@ for version in "${versions[@]}"; do
103106
;;
104107
*)
105108
supportType=Unknown
109+
supportType=STS
106110
esac
107111

108112
if [ "$version" != "$fullVersion" ]; then

0 commit comments

Comments
 (0)