Merge pull request #622 from MaxLeiter/graceful-editor-fail

Handle stderr when using edit or config command, fixes #164
This commit is contained in:
Jérémie Astori 2016-09-25 01:31:21 -04:00 committed by GitHub
commit e568452528
2 changed files with 8 additions and 2 deletions

View file

@ -6,9 +6,12 @@ program
.command("config")
.description("Edit config: " + Helper.CONFIG_PATH)
.action(function() {
child.spawn(
var child_spawn = child.spawn(
process.env.EDITOR || "vi",
[Helper.CONFIG_PATH],
{stdio: "inherit"}
);
child_spawn.on("error", function() {
log.error("Unable to open " + Helper.CONFIG_PATH + ". $EDITOR is not set, and vi was not found.");
});
});

View file

@ -12,9 +12,12 @@ program
log.error("User '" + name + "' doesn't exist.");
return;
}
child.spawn(
var child_spawn = child.spawn(
process.env.EDITOR || "vi",
[Helper.getUserConfigPath(name)],
{stdio: "inherit"}
);
child_spawn.on("error", function() {
log.error("Unable to open " + Helper.getUserConfigPath(name) + ". $EDITOR is not set, and vi was not found.");
});
});