From b57c84d22d4d81752ba0ddc42a2f6fc995d8a158 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Johanna=20R=C3=BChrig?= Date: Wed, 1 Jan 2025 13:55:32 +0100 Subject: [PATCH] Debug. --- misc/build.func | 2 ++ 1 file changed, 2 insertions(+) diff --git a/misc/build.func b/misc/build.func index 5eed7c40..50a536f3 100644 --- a/misc/build.func +++ b/misc/build.func @@ -6,7 +6,9 @@ variables() { NSAPP=$(echo ${APP,,} | tr -d ' ') # This function sets the NSAPP variable by converting the value of the APP variable to lowercase and removing any spaces. + echo "${NSAPP}" var_install="${NSAPP}-install" # sets the var_install variable by appending "-install" to the value of NSAPP. + echo "${var_install}" INTEGER='^[0-9]+([.][0-9]+)?$' # it defines the INTEGER regular expression pattern. PVEHOST_NAME=$(hostname) # gets the Proxmox Hostname and sets it to Uppercase }