Skip to content

Commit

Permalink
fix(chore): permission value should transform into octal
Browse files Browse the repository at this point in the history
  • Loading branch information
lubber-de committed Nov 12, 2019
1 parent 628cb80 commit 2563aa6
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions tasks/config/defaults.js
Original file line number Diff line number Diff line change
Expand Up @@ -10,8 +10,8 @@ module.exports = {
// base path when installed with npm
pmRoot: 'semantic/',

// octal permission for output files, i.e. 644 (false does not adjust)
permission : 744,
// octal permission for output files, i.e. 0o644 or '644' (false does not adjust)
permission : '744',

// whether to generate rtl files
rtl : false,
Expand Down

0 comments on commit 2563aa6

Please sign in to comment.