Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/betaflight/betaflight-configurator.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorhaslinghuis <mark@numloq.nl>2022-10-04 04:15:51 +0300
committerGitHub <noreply@github.com>2022-10-04 04:15:51 +0300
commitb61ec42b55b860870f4ebef4d40c581a8a1bca37 (patch)
tree3eb1d38cb3746e02e2078d1743a0702193aadbdf
parent500dea5b14a65603f7e226781c4046d7fe1cce2f (diff)
parentc2f0371119ba5eb6cd81e281d20df1133373e8e8 (diff)
Merge pull request #3028 from haslinghuis/fix-deb-permissions
Fix permissions in debian package
-rw-r--r--gulpfile.js3
1 files changed, 3 insertions, 0 deletions
diff --git a/gulpfile.js b/gulpfile.js
index 00d02652..ae7ac4e2 100644
--- a/gulpfile.js
+++ b/gulpfile.js
@@ -737,6 +737,9 @@ function release_deb(arch, appDirectory, done) {
`chown root:root ${LINUX_INSTALL_DIR}`,
`chown -R root:root ${LINUX_INSTALL_DIR}/${metadata.name}`,
`xdg-desktop-menu install ${LINUX_INSTALL_DIR}/${metadata.name}/${metadata.name}.desktop`,
+ `chmod +xr ${LINUX_INSTALL_DIR}/${metadata.name}/chrome_crashpad_handler`,
+ `chmod +xr ${LINUX_INSTALL_DIR}/${metadata.name}/${metadata.name}`,
+ `chmod -R +Xr ${LINUX_INSTALL_DIR}/${metadata.name}/`,
],
prerm: [`xdg-desktop-menu uninstall ${metadata.name}.desktop`],
depends: ['libgconf-2-4', 'libatomic1'],