refactor: switch from remote URLs to local script execution

This commit is contained in:
cod378
2025-11-03 01:54:52 +00:00
parent 0d7ff46aec
commit e33ef92334

View File

@@ -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