From 1712e2a3c87287e3d6c19107a3453d4343f9d994 Mon Sep 17 00:00:00 2001 From: Alvin Schiller <103769832+AlvinSchiller@users.noreply.github.com> Date: Sat, 28 Dec 2024 23:07:11 +0000 Subject: [PATCH] fix: fix wrong usage of variable --- 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}"