From 864e63c04d70c2e6452f3f575fdbf7e5e0ed0869 Mon Sep 17 00:00:00 2001 From: CanbiZ <47820557+MickLesk@users.noreply.github.com> Date: Fri, 19 Sep 2025 08:27:08 +0200 Subject: [PATCH] Update build.func --- misc/build.func | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/misc/build.func b/misc/build.func index 3e58389b..46c9203c 100644 --- a/misc/build.func +++ b/misc/build.func @@ -37,6 +37,7 @@ mkdir -p "$FUNC_DIR" BUILD_URL="https://raw.githubusercontent.com/community-scripts/ProxmoxVED/main/misc/build.func" BUILD_REV="$FUNC_DIR/build.rev" +DEVMODE="${DEVMODE:-no}" # --- Step 1: fetch build.func content once, compute hash --- build_content="$(curl -fsSL "$BUILD_URL")" || { @@ -100,7 +101,9 @@ if [ "$newhash" != "$oldhash" ]; then esac done else - echo "✔️ build.func unchanged → using existing local core files" + if [ "$DEVMODE" != "yes" ]; then + echo "✔️ build.func unchanged → using existing local core files" + fi fi # --- Step 3: always source local versions of the core files ---