Set build_id_links as none for rpm

Avoid build-id conflicts with other electron rpm packages
This commit is contained in:
Labhansh Agrawal 2022-01-09 11:40:00 +05:30
parent 089b90fff1
commit a42f7716bf

View file

@ -120,7 +120,11 @@
"afterInstall": "./build/linux/after-install.tpl" "afterInstall": "./build/linux/after-install.tpl"
}, },
"rpm": { "rpm": {
"afterInstall": "./build/linux/after-install.tpl" "afterInstall": "./build/linux/after-install.tpl",
"fpm": [
"--rpm-rpmbuild-define",
"_build_id_links none"
]
}, },
"snap": { "snap": {
"confinement": "classic", "confinement": "classic",
@ -132,4 +136,4 @@
"ssh" "ssh"
] ]
} }
} }