Skip to content

Commit

Permalink
Merge pull request #310 from justin-sleep/fix-build-dir-permissions
Browse files Browse the repository at this point in the history
Fix build directory permissions
  • Loading branch information
antoinerg authored Apr 13, 2020
2 parents faa203e + 29152c1 commit ae6bf02
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/util/create-index.js
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ const os = require('os')
const COMPONENT_GLOBAL = 'PlotlyExporterComponent'
const PATH_TO_BUILD = path.join(os.tmpdir(), 'orca-build')
try {
fs.mkdirSync(PATH_TO_BUILD)
fs.mkdirSync(PATH_TO_BUILD, 0o777)
} catch (e) {}
const PATH_TO_INIT_RENDERERS = path.join(__dirname, 'init-renderers.js')
const PATH_TO_INIT_PINGS = path.join(__dirname, 'init-pings.js')
Expand Down

0 comments on commit ae6bf02

Please sign in to comment.