From ba0a4197d97f26bb3a158506fdbc349cc5a2ce26 Mon Sep 17 00:00:00 2001 From: CanbiZ <47820557+MickLesk@users.noreply.github.com> Date: Mon, 28 Jul 2025 09:23:16 +0200 Subject: [PATCH] shebang --- misc/core.func | 25 +------------------------ 1 file changed, 1 insertion(+), 24 deletions(-) diff --git a/misc/core.func b/misc/core.func index e06d98f8..04d8528f 100644 --- a/misc/core.func +++ b/misc/core.func @@ -1,30 +1,7 @@ +#!/usr/bin/env bash # Copyright (c) 2021-2025 community-scripts ORG # License: MIT | https://raw.githubusercontent.com/community-scripts/ProxmoxVED/main/LICENSE -# if ! declare -f wait_for >/dev/null; then -# echo "[DEBUG] Undefined function 'wait_for' used from: ${BASH_SOURCE[*]}" >&2 -# wait_for() { -# echo "[DEBUG] Fallback: wait_for called with: $*" >&2 -# true -# } -# fi - -# trap 'on_error $? $LINENO' ERR -# trap 'on_exit' EXIT -# trap 'on_interrupt' INT -# trap 'on_terminate' TERM - -# if ! declare -f wait_for >/dev/null; then -# wait_for() { -# true -# } -# fi - -# declare -A MSG_INFO_SHOWN=() -# SPINNER_PID="" -# SPINNER_ACTIVE=0 -# SPINNER_MSG="" - # ------------------------------------------------------------------------------ # Loads core utility groups once (colors, formatting, icons, defaults). # ------------------------------------------------------------------------------