Skip to content

Commit

Permalink
merge fixes
Browse files Browse the repository at this point in the history
  • Loading branch information
AlvinSchiller authored Nov 7, 2024
1 parent 77afd87 commit 2535002
Showing 1 changed file with 5 additions and 6 deletions.
11 changes: 5 additions & 6 deletions installation/includes/02_helpers.sh
Original file line number Diff line number Diff line change
Expand Up @@ -95,14 +95,13 @@ _get_debian_version_number() {

is_debian_version_at_least() {
local expected_version=$1
if [ "$(is_raspbian)" = true ]; then
local debian_version_number=$(get_debian_version_number)
local debian_version_number=$(get_debian_version_number)

if [ "$debian_version_number" -ge "$expected_version" ]; then
echo true
fi
if [ "$debian_version_number" -ge "$expected_version" ]; then
echo true
else
echo false
fi
echo false
}

_get_boot_file_path() {
Expand Down

0 comments on commit 2535002

Please sign in to comment.