fix(installer): use single quotes for description in Gemini workflow templates
Replace triple-quoted """{{description}}""" with single-quoted '{{description}}'
to avoid TOML escaping issues in Gemini workflow templates.
Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
This commit is contained in:
parent
f09dcd4806
commit
5644978109
|
|
@ -1,4 +1,4 @@
|
||||||
description = """{{description}}"""
|
description = '{{description}}'
|
||||||
prompt = """
|
prompt = """
|
||||||
Execute the BMAD '{{name}}' workflow.
|
Execute the BMAD '{{name}}' workflow.
|
||||||
|
|
||||||
|
|
|
||||||
|
|
@ -1,4 +1,4 @@
|
||||||
description = """{{description}}"""
|
description = '{{description}}'
|
||||||
prompt = """
|
prompt = """
|
||||||
Execute the BMAD '{{name}}' workflow.
|
Execute the BMAD '{{name}}' workflow.
|
||||||
|
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue