Create 'users/' if not exist

This commit is contained in:
Mattias Erming 2014-09-09 01:09:54 -07:00
parent 2f5be12d00
commit 04da27617e
2 changed files with 12 additions and 1 deletions

View File

@ -1,7 +1,7 @@
{
"name": "shout",
"description": "A web IRC client",
"version": "0.14.1",
"version": "0.14.2",
"author": "Mattias Erming",
"preferGlobal": true,
"bin": {

View File

@ -1,6 +1,7 @@
var ClientManager = new require("../clientManager");
var fs = require("fs");
var program = require("commander");
var mkdirp = require("mkdirp");
const HOME = process.env.HOME + "/.shout";
@ -8,6 +9,16 @@ program
.command("add <name>")
.description("Add a new user")
.action(function(name) {
try {
var path = HOME + "/users";
mkdirp.sync(path);
} catch (e) {
console.log("");
console.log("Could not create " + path);
console.log("Try running the command as sudo.");
console.log("");
return;
}
try {
var path = HOME + "/users";
var test = path + "/.test";