1
0
mirror of https://github.com/bitwarden/browser synced 2025-12-12 06:13:38 +00:00

Add no-sandbox to make electron work on ubuntu (#12908)

This commit is contained in:
Bernd Schoolmann
2025-01-17 11:22:03 +01:00
committed by GitHub
parent 9eb7daa77d
commit 2726b3a957

View File

@@ -25,7 +25,7 @@ concurrently(
}, },
{ {
name: "Elec", name: "Elec",
command: `npx wait-on ./build/main.js && npx electron --inspect=5858 ${args.join( command: `npx wait-on ./build/main.js && npx electron --no-sandbox --inspect=5858 ${args.join(
" ", " ",
)} ./build --watch`, )} ./build --watch`,
prefixColor: "green", prefixColor: "green",