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 d792bad commit 0d02201Copy full SHA for 0d02201
src/installer.js
@@ -92,11 +92,10 @@ class DebianInstaller extends common.ElectronInstaller {
92
this.options.logger(`Creating control file at ${dest}`)
93
94
return common.wrapError('creating control file', async () => {
95
+ await this.createTemplatedFile(src, dest)
96
- await this.createTemplatedFile(src, dest);
97
-
98
- const contrlDir = path.join(this.stagingDir, 'DEBIAN');
99
- return fs.chmod(contrlDir, 0o755);
+ const controlDir = path.join(this.stagingDir, 'DEBIAN')
+ return fs.chmod(controlDir, 0o755)
100
})
101
}
102
0 commit comments