Fix -h
help option alias shadowed by a similar alias for --home
In v2.2.1 (and in pretty much every software out there, really), `-h` was an alias of `--help`. By adding it as an alias of `--home`, it is now shown twice in the help.
This commit is contained in:
parent
bdf4a93200
commit
1c732ffc5b
@ -10,7 +10,7 @@ var path = require("path");
|
||||
var Helper = require("../helper");
|
||||
|
||||
program.version(Helper.getVersion(), "-v, --version")
|
||||
.option("-h, --home <path>", "path to configuration folder")
|
||||
.option("--home <path>", "path to configuration folder")
|
||||
.parseOptions(process.argv);
|
||||
|
||||
Helper.setHome(program.home || process.env.LOUNGE_HOME);
|
||||
|
Loading…
Reference in New Issue
Block a user