From ea40be3e89de0b728b45aac09909e8d10276cc30 Mon Sep 17 00:00:00 2001 From: Simon Date: Sat, 23 Nov 2024 15:53:09 +0100 Subject: [PATCH 1/2] ignore LICENSE in markdown linter --- .markdownlint-cli2.yaml | 1 + 1 file changed, 1 insertion(+) diff --git a/.markdownlint-cli2.yaml b/.markdownlint-cli2.yaml index 88c67e576..7ee48734a 100644 --- a/.markdownlint-cli2.yaml +++ b/.markdownlint-cli2.yaml @@ -32,6 +32,7 @@ globs: ignores: - "documentation/developers/docstring/*" - "src/**" + - "LICENSE" # Use a plugin to recognize math #markdownItPlugins: From d845bd34e1c1e2fd5ae93ad3274dec0505c8e981 Mon Sep 17 00:00:00 2001 From: pabera <1260686+pabera@users.noreply.github.com> Date: Mon, 9 Dec 2024 18:21:55 +0100 Subject: [PATCH 2/2] fix: correct function name reference in is_debian_version_at_least() (#2464) --- installation/includes/02_helpers.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/installation/includes/02_helpers.sh b/installation/includes/02_helpers.sh index 440e10b08..ac6d434a0 100644 --- a/installation/includes/02_helpers.sh +++ b/installation/includes/02_helpers.sh @@ -95,7 +95,7 @@ _get_debian_version_number() { is_debian_version_at_least() { local expected_version=$1 - 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