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
Escaping shell commands is very tricky! Often in Starlark/Python, it means a combination of multiline (aka triple-quote ''') strings + raw strings (r"foo").
Escaping shell commands is very tricky! Often in Starlark/Python, it means a combination of multiline (aka triple-quote
'''
) strings + raw strings (r"foo"
).We've already got a few examples in the docs for
shlex.quote
: https://docs.tilt.dev/api.html#modules.shlex.quoteBut we could probably stand to add a couple more for more complex cases with embedded quoting, for example.
The text was updated successfully, but these errors were encountered: