You've already forked postgres
mirror of
https://github.com/docker-library/postgres.git
synced 2025-07-29 21:41:20 +03:00
Fix Travis sorting so 11 comes first
This commit is contained in:
@ -9,6 +9,9 @@ if [ ${#versions[@]} -eq 0 ]; then
|
||||
fi
|
||||
versions=( "${versions[@]%/}" )
|
||||
|
||||
# sort version numbers with highest last (so it goes first in .travis.yml)
|
||||
IFS=$'\n'; versions=( $(echo "${versions[*]}" | sort -V) ); unset IFS
|
||||
|
||||
defaultDebianSuite='stretch-slim'
|
||||
declare -A debianSuite=(
|
||||
#[9.6]='jessie'
|
||||
|
Reference in New Issue
Block a user