Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
8 changes: 4 additions & 4 deletions electron-builder.config.cjs
Original file line number Diff line number Diff line change
Expand Up @@ -84,10 +84,6 @@ const config = {
Categories: "Development;Utility;",
},
},
rpm: {
// this should remove /usr/lib/.build-id/ links which can conflict with other electron apps like slack
fpm: ["--rpm-rpmbuild-define", "_build_id_links none"],
},
executableArgs: ["--enable-features", "UseOzonePlatform", "--ozone-platform-hint", "auto"], // Hint Electron to use Ozone abstraction layer for native Wayland support
},
deb: {
Expand All @@ -111,6 +107,10 @@ const config = {
allowNativeWayland: true,
artifactName: "${name}_${version}_${arch}.${ext}",
},
rpm: {
// this should remove /usr/lib/.build-id/ links which can conflict with other electron apps like slack
fpm: ["--rpm-rpmbuild-define", "_build_id_links none"],
},
publish: {
provider: "generic",
url: "https://dl.waveterm.dev/releases-w2",
Expand Down
Loading