Skip to content

Commit

Permalink
Update install.sh: Fix unnecessary reboot
Browse files Browse the repository at this point in the history
  • Loading branch information
EricClaeys authored Aug 16, 2023
1 parent 2ec008c commit 4a73d90
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions install.sh
Original file line number Diff line number Diff line change
Expand Up @@ -1347,8 +1347,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
Expand Down

0 comments on commit 4a73d90

Please sign in to comment.