Skip to content

Commit a0377d7

Browse files
committed
Use 0777 when creating .codebox folder
1 parent dff8f7b commit a0377d7

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

lib/configs/local.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -47,7 +47,7 @@ module.exports = function(options) {
4747

4848
// Create .codebox folder
4949
logger.log("Creating", LOCAL_SETTINGS_DIR);
50-
wrench.mkdirSyncRecursive(LOCAL_SETTINGS_DIR);
50+
wrench.mkdirSyncRecursive(LOCAL_SETTINGS_DIR, 0777);
5151

5252
return options;
5353
};

0 commit comments

Comments
 (0)