Skip to content

Commit

Permalink
Fix XML syntax error in freemarker manifest (#1054)
Browse files Browse the repository at this point in the history
The extra " inside XML property was actually being processed properly
by freemarker (surprisingly!), but XML editors/viewers reported an
error.
  • Loading branch information
jonahgraham authored Jan 22, 2025
1 parent c5cc700 commit 9c4ace1
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,6 @@
<file src="/templates/simple/config.h.in"
dest="/${projectName}/config.h.in"/>
<file src="/templates/simple/main.cpp"
dest="/${projectName}/${projectName?replace(" ", "_")}.cpp"
dest='/${projectName}/${projectName?replace(" ", "_")}.cpp'
open="true"/>
</templateManifest>

0 comments on commit 9c4ace1

Please sign in to comment.