1
0
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:
Tianon Gravi
2018-09-06 13:56:20 -07:00
parent 2337858365
commit 7295cf0577
2 changed files with 9 additions and 6 deletions

View File

@ -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'