Hi, I'm trying to use app arguments for my executable electron application but I'm having 2 issues.
- If an argument contains a white space, it would automatically add quotation marks around the argument:
{
"mainWindowUrl": "./index.html",
"appArgs": ["--test:1"]
}
vs
{
"mainWindowUrl": "./index.html",
"appArgs": ["--test: 1"]
}
Here is the app's arguments in Task Manager:

vs

- Quotation marks aren't escaped properly and breaks escape characters:
{
"mainWindowUrl": "./index.html",
"appArgs": ["--location=C:\\"]
}
vs
{
"mainWindowUrl": "./index.html",
"appArgs": ["--location=\"C:\\\""]
}

vs

Thank you very much for your time.