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
Writing Bash scripts in Rhai is somewhat uncomfortable when it comes to Bash's ${VAR} syntax:
cmake .. ${cmake_args[@]}
ninja
Currently I have to write
let script = `
cmake .. ${"${cmake_args[@]}"}
ninja
`;
Could there be some forms of escaping this syntax, either double dollar sign ($$) similar to writing back-ticks (``), or a more general escape pattern that includes \$ (or more broadly, \`)?
The text was updated successfully, but these errors were encountered:
Writing Bash scripts in Rhai is somewhat uncomfortable when it comes to Bash's
${VAR}
syntax:cmake .. ${cmake_args[@]} ninja
Currently I have to write
Could there be some forms of escaping this syntax, either double dollar sign (
$$
) similar to writing back-ticks (``
), or a more general escape pattern that includes\$
(or more broadly,\`
)?The text was updated successfully, but these errors were encountered: