Update update-pve8.sh

This commit is contained in:
MacRimi 2025-08-06 19:04:32 +02:00
parent f4b5e7c044
commit 4dc3fd92cc

View File

@ -31,10 +31,10 @@ register_tool() {
download_common_functions() {
local common_file="$BASE_DIR/common-functions.sh"
local common_file="$BASE_DIR/scripts/global/common-functions.sh"
if [[ ! -f "$common_file" ]]; then
if ! curl -s "$REPO_URL/global/common-functions.sh" -o "$common_file"; then
if ! curl -s "$REPO_URL/scripts/global/common-functions.sh" -o "$common_file"; then
return 1
fi
fi