From 9703c99d87e5c50ce3a71eeb19f0b08270d8d64f Mon Sep 17 00:00:00 2001 From: pabera <1260686+pabera@users.noreply.github.com> Date: Sun, 29 Dec 2024 13:12:50 +0100 Subject: [PATCH] fix: call the right function name to check on debian version --- 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 07c0e6851..dfc880754 100644 --- a/installation/includes/02_helpers.sh +++ b/installation/includes/02_helpers.sh @@ -84,7 +84,7 @@ is_debian_based() { fi } -get_debian_version_number() { +_get_debian_version_number() { if [ "$(is_debian_based)" = true ]; then local debian_version_number=$( . /etc/os-release; printf '%s\n' "$VERSION_ID"; ) echo "$debian_version_number"