Merge pull request #205 from maxpoulin64/I-194

Restrict access to the home directory by default
This commit is contained in:
Jérémie Astori 2016-04-27 02:25:30 -04:00
commit 1150d646cb
1 changed files with 1 additions and 1 deletions

View File

@ -15,7 +15,7 @@ if (program.home) {
var config = Helper.HOME + "/config.js";
if (!fs.existsSync(config)) {
mkdirp.sync(Helper.HOME);
mkdirp.sync(Helper.HOME, {mode: "0700"});
fs.writeFileSync(
config,
fs.readFileSync(__dirname + "/../../defaults/config.js")