mirror of
https://github.com/aljazceru/lightning.git
synced 2026-01-04 23:04:35 +01:00
options: --help and --version are early args.
If they use these, we definitely don't want to create the config dir... Signed-off-by: Rusty Russell <rusty@rustcorp.com.au>
This commit is contained in:
@@ -453,10 +453,10 @@ bool handle_opts(struct lightningd_state *dstate, int argc, char *argv[])
|
||||
|
||||
opt_set_alloc(opt_allocfn, tal_reallocfn, tal_freefn);
|
||||
|
||||
opt_register_noarg("--help|-h", opt_usage_and_exit,
|
||||
"\n"
|
||||
"A bitcoin lightning daemon.",
|
||||
"Print this message.");
|
||||
opt_register_early_noarg("--help|-h", opt_usage_and_exit,
|
||||
"\n"
|
||||
"A bitcoin lightning daemon.",
|
||||
"Print this message.");
|
||||
opt_register_arg("--port", opt_set_u16, opt_show_u16, &dstate->portnum,
|
||||
"Port to bind to (0 means don't listen)");
|
||||
opt_register_arg("--bitcoin-datadir", opt_set_charp, NULL,
|
||||
|
||||
@@ -7,7 +7,7 @@ char *version_and_exit(const void *unused);
|
||||
const char *version(void);
|
||||
|
||||
#define opt_register_version() \
|
||||
opt_register_noarg("--version|-V", version_and_exit, NULL, \
|
||||
"print version to standard output and exit")
|
||||
opt_register_early_noarg("--version|-V", version_and_exit, NULL, \
|
||||
"print version to standard output and exit")
|
||||
|
||||
#endif /* LIGHTNING_VERSION_H */
|
||||
|
||||
Reference in New Issue
Block a user