From 055b5392d60ff9a71cfb8e7b839e123a05b66a53 Mon Sep 17 00:00:00 2001 From: Matthias Urlichs Date: Thu, 9 Apr 2026 15:19:56 +0200 Subject: [PATCH] Remove special-casing 2023.12.0 HACS requires at least 2024.4.1 anyway. This test is therefore redundant. --- get | 6 ------ 1 file changed, 6 deletions(-) diff --git a/get b/get index 9156d6f..e647848 100644 --- a/get +++ b/get @@ -88,12 +88,6 @@ function run() { targetYear=$(echo "${targetVersion}" | cut -d "." -f 1) currentYear=$(echo "${currentVersion}" | cut -d "." -f 1) - if [ "${currentVersion}" == "2023.12.0" ]; then - rm -R "$haPath/custom_components/hacs" - rm -f "$haPath/custom_components/hacs.zip" - error "HACS will not work on version 2023.12.0 of Home Assistant, upgrade to 2023.12.1 (or newer) before re-running this script." - fi - if [ "${currentYear}" -lt "${targetYear}" ]; then rm -R "$haPath/custom_components/hacs" rm -f "$haPath/custom_components/hacs.zip"