Open tvallin opened 1 day ago
You are running these command in powershell, so the outer quotes might be interpreted by your shell.
The backtick character is an escape similar to \
, so if you do
"`"-Dfoo.bar`""
It's equivalent to this java code:
"\"-Dfoo.bar\""
Have you tried with single quotes instead of double quotes ?
Problem description
There are two issues:
*\start.ps1
using the--jvm
option are not guarded by ' " ' character.Reproducer
Using the Helidon application https://github.com/helidon-io/helidon/tree/main/tests/integration/packaging/se-1
The workaround is to use this command:
Question is: Should we keep this behavior ?
app.static.path
option through configuration.