Merge pull request #221 from wizardfrag/editfix

Fix missing Helper method in edit and use $EDITOR
This commit is contained in:
Mattias Erming 2014-10-09 16:30:20 +02:00
commit b565327a4a
2 changed files with 3 additions and 3 deletions

View file

@ -10,7 +10,7 @@ program
.description("Edit config: '" + Helper.HOME + "/config.js'")
.action(function() {
child.spawn(
"vi",
process.env.EDITOR || "vi",
[Helper.HOME + "/config.js"],
{stdio: "inherit"}
);

View file

@ -15,8 +15,8 @@ program
return;
}
child.spawn(
"vi",
[Helper.resolveHomePath("users", name, "user.json")],
process.env.EDITOR || "vi",
[require("path").join(Helper.HOME, "users", name, "user.json")],
{stdio: "inherit"}
);
});