Remove --no-sandbox (#122909)

* linux - remove `--no-sandbox` flag

We should not disable sandbox on Linux.
We only added this to support running on Kernel <= 3.8 where setuid sandbox is used.

* fix ci

* add some docs
This commit is contained in:
Benjamin Pasero
2021-05-04 11:18:19 +02:00
committed by GitHub
parent b1ce0eda2d
commit e2954beb4b
8 changed files with 15 additions and 22 deletions
+1 -1
View File
@@ -43,7 +43,7 @@ function code() {
export ELECTRON_ENABLE_LOGGING=1
# Launch Code
exec "$CODE" . --no-sandbox "$@"
exec "$CODE" . "$@"
}
function code-wsl()