-
-
Notifications
You must be signed in to change notification settings - Fork 2.7k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Linux: Force --no-sandbox into .desktop file
- Loading branch information
1 parent
35e943e
commit 1ca0d82
Showing
1 changed file
with
13 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,13 @@ | ||
diff --git a/node_modules/app-builder-lib/out/targets/LinuxTargetHelper.js b/node_modules/app-builder-lib/out/targets/LinuxTargetHelper.js | ||
index b4533a9..13241f5 100644 | ||
--- a/node_modules/app-builder-lib/out/targets/LinuxTargetHelper.js | ||
+++ b/node_modules/app-builder-lib/out/targets/LinuxTargetHelper.js | ||
@@ -129,7 +129,7 @@ class LinuxTargetHelper { | ||
exec = `"${exec}"`; | ||
} | ||
|
||
- exec += " %U"; | ||
+ exec += " --no-sandbox %U"; | ||
} | ||
|
||
const desktopMeta = Object.assign({ |
1ca0d82
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
@scottnonnenberg-signal What's with this?
1ca0d82
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
This is not a proper solution and stinks of CIA.