From ff4d46d50953fd142920481115fa3066cc2ac207 Mon Sep 17 00:00:00 2001 From: Geoff Bourne Date: Wed, 24 Nov 2021 15:52:22 -0600 Subject: [PATCH] fix: corrected versionLessThan for versions with dashes #1132 --- scripts/start-utils | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/scripts/start-utils b/scripts/start-utils index 497a4257..00f8a9a4 100755 --- a/scripts/start-utils +++ b/scripts/start-utils @@ -113,7 +113,7 @@ function normalizeMemSize() { function versionLessThan() { local activeParts - IFS=. read -ra activeParts <<<"${VANILLA_VERSION}" + IFS=. read -ra activeParts <<<"${VANILLA_VERSION%%-*}" local givenParts IFS=. read -ra givenParts <<<"$1"