Skip to content

Commit

Permalink
[Installation] Fix function call in helper file 2
Browse files Browse the repository at this point in the history
  • Loading branch information
pabera committed Nov 23, 2024
1 parent e019429 commit 13fe841
Showing 1 changed file with 1 addition and 2 deletions.
3 changes: 1 addition & 2 deletions installation/includes/02_helpers.sh
Original file line number Diff line number Diff line change
Expand Up @@ -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}"
Expand Down

0 comments on commit 13fe841

Please sign in to comment.