8000
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.
2 parents 3884130 + dba8ec0 commit 3690694Copy full SHA for 3690694
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