From 0e53fc04e34a0418f9bb83a49456e1842385fb38 Mon Sep 17 00:00:00 2001 From: Eric Claeys <83164203+EricClaeys@users.noreply.github.com> Date: Wed, 16 Aug 2023 00:00:46 -0500 Subject: [PATCH] Update install.sh: Fix unnecessary reboot --- install.sh | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/install.sh b/install.sh index 52e289b71..7a448f726 100755 --- a/install.sh +++ b/install.sh @@ -1346,8 +1346,8 @@ is_reboot_needed() local OLD_VERSION="${1}" local OLD_BASE_VERSION="${OLD_VERSION:0:11}" # Without point release local NEW_VERSION="${2}" - if [[ ${NEW_VERSION} == "v2023.05.01_02" && ${OLD_BASE_VERSION} == "v2023.05.01" ]]; then - # just bug fixes between those two versions + if [[ ${NEW_VERSION:0:11} == "v2023.05.01" && ${OLD_BASE_VERSION} == "v2023.05.01" ]]; then + # just bug fixes between the v2023.05.01 versions. REBOOT_NEEDED="false" display_msg --logonly info "No reboot is needed." else