Movatterモバイル変換


[0]ホーム

URL:


Skip to content

Navigation Menu

Sign in
Appearance settings

Search code, repositories, users, issues, pull requests...

Provide feedback

We read every piece of feedback, and take your input very seriously.

Saved searches

Use saved searches to filter your results more quickly

Sign up
Appearance settings

Commitdba8ec0

Browse files
committed
Adjust tagging to enforce explicit pre-release opt-in
I rewound to commit09c342c to test this and verify that `postgres:13` would go away (and only `postgres:13-rc1` would remain).
1 parent3884130 commitdba8ec0

File tree

1 file changed

+7
-1
lines changed

1 file changed

+7
-1
lines changed

‎generate-stackbrew-library.sh

Lines changed: 7 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -80,8 +80,14 @@ for version in "${versions[@]}"; do
8080
versionAliases+=($fullVersion )
8181
fullVersion="${fullVersion%[.-]*}"
8282
done
83+
# skip unadorned "version" on prereleases: https://www.postgresql.org/developer/beta/
84+
# - https://github.com/docker-library/postgres/issues/662
85+
# - https://github.com/docker-library/postgres/issues/784
86+
case"$pgdgVersion"in
87+
*alpha* |*beta*|*rc*) ;;
88+
*) versionAliases+=($version ) ;;
89+
esac
8390
versionAliases+=(
84-
$version
8591
${aliases[$version]:-}
8692
)
8793

0 commit comments

Comments
 (0)

[8]ページ先頭

©2009-2025 Movatter.jp