Merge pull request #117 from maxpoulin64/fix-user-filemode

Remove attempts to set file modes
This commit is contained in:
Jérémie Astori 2016-03-05 01:48:51 -05:00
commit 0f48b11a22

View file

@ -80,8 +80,7 @@ ClientManager.prototype.addUser = function(name, password) {
mkdirp.sync(path);
fs.writeFileSync(
path + "/" + name + ".json",
JSON.stringify(user, null, " "),
{mode: "0777"}
JSON.stringify(user, null, " ")
);
} catch (e) {
throw e;
@ -111,7 +110,6 @@ ClientManager.prototype.updateUser = function(name, opts) {
fs.writeFileSync(
path,
JSON.stringify(user, null, " "),
{mode: "0777"},
function(err) {
if (err) {
console.log(err);