From cb9782df2c0832ad91b2d125f983a46bd18561b8 Mon Sep 17 00:00:00 2001 From: Cyra Date: Sun, 29 Mar 2026 18:05:04 -0700 Subject: [PATCH] fix(forgejo-runner): use COMMUNITY_SCRIPTS_URL for build.func sourcing MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit CT script hardcoded the upstream URL for build.func, so the install script was always fetched from upstream — ignoring fork/branch fixes. Now respects COMMUNITY_SCRIPTS_URL override, consistent with how build.func already handles this for all other resource fetching. --- ct/forgejo-runner.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/ct/forgejo-runner.sh b/ct/forgejo-runner.sh index 93470d3c..19aaabfe 100644 --- a/ct/forgejo-runner.sh +++ b/ct/forgejo-runner.sh @@ -1,5 +1,5 @@ #!/usr/bin/env bash -source <(curl -fsSL https://raw.githubusercontent.com/community-scripts/ProxmoxVED/main/misc/build.func) +source <(curl -fsSL "${COMMUNITY_SCRIPTS_URL:-https://raw.githubusercontent.com/community-scripts/ProxmoxVED/main}/misc/build.func") # Copyright (c) 2021-2026 community-scripts ORG # Author: Simon Friedrich