1
0
Fork 0
mirror of https://github.com/eclipse-cdt/cdt synced 2025-07-23 08:55:25 +02:00

Fix XML syntax error in freemarker manifest (#1054)

The extra " inside XML property was actually being processed properly
by freemarker (surprisingly!), but XML editors/viewers reported an
error.
This commit is contained in:
Jonah Graham 2025-01-22 16:39:20 -05:00 committed by GitHub
parent c5cc700a2d
commit 9c4ace138c
No known key found for this signature in database
GPG key ID: B5690EEEBB952194

View file

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