We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent e5531df commit d792badCopy full SHA for d792bad
src/installer.js
@@ -91,7 +91,13 @@ class DebianInstaller extends common.ElectronInstaller {
91
const dest = path.join(this.stagingDir, 'DEBIAN', 'control')
92
this.options.logger(`Creating control file at ${dest}`)
93
94
- return common.wrapError('creating control file', async () => this.createTemplatedFile(src, dest))
+ return common.wrapError('creating control file', async () => {
95
+
96
+ await this.createTemplatedFile(src, dest);
97
98
+ const contrlDir = path.join(this.stagingDir, 'DEBIAN');
99
+ return fs.chmod(contrlDir, 0o755);
100
+ })
101
}
102
103
/**
0 commit comments