From ca3c799edce472434c66b5023b352c306acadf43 Mon Sep 17 00:00:00 2001 From: Alvin Schiller <103769832+AlvinSchiller@users.noreply.github.com> Date: Mon, 30 Dec 2024 14:18:04 +0100 Subject: [PATCH] fix: fix wrong usage of variable (#2473) --- installation/includes/02_helpers.sh | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/installation/includes/02_helpers.sh b/installation/includes/02_helpers.sh index ac6d434a0..dfc880754 100644 --- a/installation/includes/02_helpers.sh +++ b/installation/includes/02_helpers.sh @@ -106,8 +106,7 @@ is_debian_version_at_least() { _get_boot_file_path() { local filename="$1" - local is_debian_version_number_at_least_12=$(is_debian_version_at_least 12) - if [ "$(is_debian_version_number_at_least_12)" = true ]; then + if [ "$(is_debian_version_at_least 12)" = true ]; then echo "/boot/firmware/${filename}" else echo "/boot/${filename}"