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:
authorMark Haslinghuis <mark@numloq.nl>2022-09-28 19:51:35 +0300
committerMark Haslinghuis <mark@numloq.nl>2022-09-28 20:27:08 +0300
commitc2f0371119ba5eb6cd81e281d20df1133373e8e8 (patch)
treee13f32d115e2a72f5257826dbc8fc5acf0dc5ae8
parent4b20d5b88d1970557938aec8add7f4782de5e784 (diff)
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'],