10000
We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 3884130 commit dba8ec0Copy full SHA for dba8ec0
generate-stackbrew-library.sh
@@ -80,8 +80,14 @@ for version in "${versions[@]}"; do
80
versionAliases+=( $fullVersion )
81
fullVersion="${fullVersion%[.-]*}"
82
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
90
versionAliases+=(
- $version
91
${aliases[$version]:-}
92
)
93
0 commit comments