From 8428c9a449fac18b3e6213eec1e416ff7d0f97cf Mon Sep 17 00:00:00 2001 From: CanbiZ <47820557+MickLesk@users.noreply.github.com> Date: Tue, 20 May 2025 09:16:53 +0200 Subject: [PATCH] test --- misc/build.func | 2 ++ misc/core.func | 1 - misc/install.func | 1 + 3 files changed, 3 insertions(+), 1 deletion(-) diff --git a/misc/build.func b/misc/build.func index b14b1a8..44be138 100644 --- a/misc/build.func +++ b/misc/build.func @@ -19,10 +19,12 @@ source <(curl -fsSL https://git.community-scripts.org/community-scripts/ProxmoxV if command -v curl >/dev/null 2>&1; then source <(curl -fsSL https://git.community-scripts.org/community-scripts/ProxmoxVED/raw/branch/main/misc/core.func) load_functions + setup_trap_abort_handling #echo "(build.func) Loaded core.func via curl" elif command -v wget >/dev/null 2>&1; then source <(wget -qO- https://git.community-scripts.org/community-scripts/ProxmoxVED/raw/branch/main/misc/core.func) load_functions + setup_trap_abort_handling #echo "(build.func) Loaded core.func via wget" fi diff --git a/misc/core.func b/misc/core.func index 5cb594e..4972b79 100644 --- a/misc/core.func +++ b/misc/core.func @@ -30,7 +30,6 @@ _CORE_FUNC_LOADED=1 load_functions() { [[ -n "${__FUNCTIONS_LOADED:-}" ]] && return __FUNCTIONS_LOADED=1 - setup_trap_abort_handling color formatting icons diff --git a/misc/install.func b/misc/install.func index 0f23430..f481558 100644 --- a/misc/install.func +++ b/misc/install.func @@ -12,6 +12,7 @@ if ! command -v curl >/dev/null 2>&1; then fi source <(curl -fsSL https://git.community-scripts.org/community-scripts/ProxmoxVED/raw/branch/main/misc/core.func) load_functions +setup_trap_abort_handling # # Function to set STD mode based on verbosity # set_std_mode() {