Skip to content

Commit

Permalink
fixed permission of bundled executable
Browse files Browse the repository at this point in the history
  • Loading branch information
ronny1982 committed Aug 4, 2019
1 parent 9dac250 commit d3275e7
Showing 1 changed file with 1 addition and 0 deletions.
1 change: 1 addition & 0 deletions build-app.js
Original file line number Diff line number Diff line change
Expand Up @@ -140,6 +140,7 @@ class ElectronPackager {
console.log(`Bundle '${source}' ...`);
if(await fs.exists(source)) {
await fs.copy(source, target);
await fs.chmod(target, '0755');
console.log(` => File bundled: '${target}'`);
} else {
console.log(' => File not found: skipped');
Expand Down

0 comments on commit d3275e7

Please sign in to comment.