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
As the name suggests, configure the project with a semicolon in the Wifi name or password and the build will fail due to /bin/sh: 1: Syntax error: Unterminated quoted string because the cmake splits the argument into a list at the semicolon.
by passing \; you can make it work, which means you have to pass \\\; on the shell because it eats the first and then every second. I'm not sure this can even be fixed in the build process itself.
The text was updated successfully, but these errors were encountered:
ISSUE
As the name suggests, configure the project with a semicolon in the Wifi name or password and the build will fail due to
/bin/sh: 1: Syntax error: Unterminated quoted string
because the cmake splits the argument into a list at the semicolon.Example to reproduce:
resulting in this output in build.ninja:
FIX
by passing
\;
you can make it work, which means you have to pass\\\;
on the shell because it eats the first and then every second. I'm not sure this can even be fixed in the build process itself.The text was updated successfully, but these errors were encountered: