From e33ef92334cc0838f4063e1e4daf5973d1cd71d2 Mon Sep 17 00:00:00 2001 From: cod378 Date: Mon, 3 Nov 2025 01:54:52 +0000 Subject: [PATCH] refactor: switch from remote URLs to local script execution --- scripts/utilities/proxmox_update.sh | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/scripts/utilities/proxmox_update.sh b/scripts/utilities/proxmox_update.sh index db22a6e..e13ad9c 100644 --- a/scripts/utilities/proxmox_update.sh +++ b/scripts/utilities/proxmox_update.sh @@ -57,12 +57,12 @@ apt_upgrade() { if [[ "$pve_version" -ge 9 ]]; then show_proxmenux_logo msg_title "$(translate "$SCRIPT_TITLE")" - bash <(curl -fsSL "$REPO_URL/scripts/global/update-pve9_2.sh") + bash "$LOCAL_SCRIPTS/global/update-pve9_2.sh" else show_proxmenux_logo msg_title "$(translate "Proxmox system update")" - bash <(curl -fsSL "$REPO_URL/scripts/global/update-pve8.sh") + bash "$LOCAL_SCRIPTS/global/update-pve8.sh" fi