Auto-merging via docker-versions-create

This commit is contained in:
Geoff Bourne
2021-12-04 10:00:34 -06:00
2 changed files with 4 additions and 4 deletions

View File

@@ -113,7 +113,9 @@ function normalizeMemSize() {
function versionLessThan() {
local activeParts
IFS=. read -ra activeParts <<<"${VANILLA_VERSION%%-*}"
version=${VANILLA_VERSION%%-*} # for snapshot/rc versions
version=${version##b} # for versions like b1.7.3
IFS=. read -ra activeParts <<<"${version}"
local givenParts
IFS=. read -ra givenParts <<<"$1"