mirror of
https://github.com/uprightbass360/AzerothCore-RealmMaster.git
synced 2026-01-13 00:58:34 +00:00
Fix YAML smart quotes causing Portainer deployment error
Replace smart quotes with standard quotes in client-data download script to resolve 'top-level object must be a mapping' error in Portainer
This commit is contained in:
@@ -157,7 +157,7 @@ services:
|
||||
|
||||
# Get the latest release info from wowgaming/client-data
|
||||
echo '📡 Fetching latest client data release info...'
|
||||
LATEST_URL=$$(wget -qO- https://api.github.com/repos/wowgaming/client-data/releases/latest | grep '\"browser_download_url\":' | grep '\.7z' | cut -d'\"' -f4 | head -1)
|
||||
LATEST_URL=$$(wget -qO- https://api.github.com/repos/wowgaming/client-data/releases/latest | grep '"browser_download_url":' | grep '\.7z' | cut -d'"' -f4 | head -1)
|
||||
|
||||
if [ -z \"$$LATEST_URL\" ]; then
|
||||
echo '❌ Could not fetch latest release URL'
|
||||
|
||||
Reference in New Issue
Block a user