1
0
mirror of https://github.com/community-scripts/ProxmoxVE.git synced 2025-05-10 14:03:07 +00:00

fix app/application var mapping (#4357)

This commit is contained in:
Tobias 2025-05-09 20:30:29 +02:00 committed by GitHub
parent 9b9ed2f6e1
commit c604aeb064
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

@ -479,7 +479,7 @@ install_mongodb() {
fetch_and_deploy_gh_release() { fetch_and_deploy_gh_release() {
local repo="$1" local repo="$1"
local app=$(echo ${APPLICATION,,} | tr -d ' ') local app=${APP:-$(echo "${APPLICATION,,}" | tr -d ' ')}
local api_url="https://api.github.com/repos/$repo/releases/latest" local api_url="https://api.github.com/repos/$repo/releases/latest"
local header=() local header=()
local attempt=0 local attempt=0