Update install_coral_pve.sh

This commit is contained in:
MacRimi 2025-01-31 22:20:53 +01:00 committed by GitHub
parent 5e016dd13c
commit d78e4d7b8f
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

@ -29,18 +29,9 @@ if ! source <(curl -sSf "$UTILS_URL"); then
exit 1
fi
initialize_cache() {
if [ ! -f "$CACHE_FILE" ]; then
echo "{}" > "$CACHE_FILE"
return
fi
}
initialize_cache
load_language
load_language() {
if [ -f "$CONFIG_FILE" ]; then
LANGUAGE=$(jq -r '.language' "$CONFIG_FILE")
fi
}
# ==========================================================