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:
Deckard
2025-09-27 03:12:18 -04:00
parent 743c3f2c54
commit a0cc5cc79a

View File

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