Skip to content

Commit

Permalink
Fix XML syntax error in freemarker manifest
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 committed Jan 22, 2025
1 parent 9e04dc5 commit 4bc0d1c
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 4bc0d1c

Please sign in to comment.