You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
When you put a quotation mark in some questions of 'geode new' (like in Name or Description) the mod.json file will also contain this quotation mark, which will not allow the mod to be built.
For example, if i put in the description input: This is a "description"
the json file will look like this
...
"description": "This is a "description""
...
If you then try to build the mod, CMake will throw an error.
The solution for this would be to correctly escape quotation marks so the json looks like this:
...
"description": "This is a \"description\""
...
or to forbid using this symbol in the inputs.
The text was updated successfully, but these errors were encountered:
When you put a quotation mark in some questions of 'geode new' (like in Name or Description) the mod.json file will also contain this quotation mark, which will not allow the mod to be built.
For example, if i put in the description input:
This is a "description"
the json file will look like this
If you then try to build the mod, CMake will throw an error.
The solution for this would be to correctly escape quotation marks so the json looks like this:
or to forbid using this symbol in the inputs.
The text was updated successfully, but these errors were encountered: