fix(cli): support --no-sandbox - #1018
Conversation
|
Hey @atjn, v7 introduces PAG_USE_NO_SANDBOX env var, in addition to the no-sandbox flag. Do we still need this PR? |
|
@onderceylan the docs currently say that you can set the |
|
@atjn we should support the flag. But I was under the impression that meow converts the flags that have dash to camelCase.
We should not introduce another flag to fix the reported issue, but try to make --no-sandbox work instead/in addition to --noSandbox. |
|
@onderceylan the problem is that If you don't want to introduce a new flag, you need to replace meow with something that allows At least that is how I remember it, I made this PR more than 6 months ago, so maybe I am forgetting some details. |
|
In this PR, I am adding the |
Support
--no-sandboxas it is written in the docs. Currently, it is only possible to activate this option with-nor--noSandbox.Fixes #1003