-
Notifications
You must be signed in to change notification settings - Fork 892
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Work around startup crashes on Linux (brave/brave-browser#4142)
- Loading branch information
Showing
1 changed file
with
19 additions
and
0 deletions.
There are no files selected for viewing
19 changes: 19 additions & 0 deletions
19
patches/chrome-installer-linux-common-desktop.template.patch
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,19 @@ | ||
diff --git a/chrome/installer/linux/common/desktop.template b/chrome/installer/linux/common/desktop.template | ||
index 62f031cfdff3ae9a7b25b76f88b3ba40ab477e75..490b7d13cf703e353444fd940e0350e23f57be09 100644 | ||
--- a/chrome/installer/linux/common/desktop.template | ||
+++ b/chrome/installer/linux/common/desktop.template | ||
@@ -166,7 +166,7 @@ Name[uk]=Нове вікно | ||
Name[vi]=Cửa sổ Mới | ||
Name[zh_CN]=新建窗口 | ||
Name[zh_TW]=開新視窗 | ||
-Exec=/usr/bin/@@USR_BIN_SYMLINK_NAME@@ | ||
+Exec=/usr/bin/@@USR_BIN_SYMLINK_NAME@@ || /bin/true | ||
|
||
[Desktop Action new-private-window] | ||
Name=New Incognito Window | ||
@@ -218,4 +218,4 @@ Name[uk]=Нове вікно в режимі анонімного перегля | ||
Name[vi]=Cửa sổ ẩn danh mới | ||
Name[zh_CN]=新建隐身窗口 | ||
Name[zh_TW]=新增無痕式視窗 | ||
-Exec=/usr/bin/@@USR_BIN_SYMLINK_NAME@@ --incognito | ||
+Exec=/usr/bin/@@USR_BIN_SYMLINK_NAME@@ --incognito || /bin/true |