Fix compilation error by properly escaping quotes in WLED_REPO build flag

Co-authored-by: netmindz <442066+netmindz@users.noreply.github.com>
This commit is contained in:
copilot-swe-agent[bot]
2025-09-19 22:50:20 +00:00
parent 684224c614
commit e69bf4eceb

View File

@@ -51,4 +51,4 @@ def get_github_repo():
return 'unknown'
repo = get_github_repo()
env.Append(BUILD_FLAGS=[f'-DWLED_REPO="{repo}"'])
env.Append(BUILD_FLAGS=[f'-DWLED_REPO=\\"{repo}\\"'])