Radish alpha
H
rad:z3QDZAW2FAfuLvihrhiyDC9fAD8G9
HardenedBSD Package Manager
Radicle
Git
Completionism: add --debug as a synonym for -d -- this is the only short option without a long equivalent.
Matthew Seaman committed 11 years ago
commit c18a01025472e6d7d036f8b99985e6321a651dfd
parent 686875b
1 file changed +4 -3
modified src/register.c
@@ -114,14 +114,15 @@ exec_register(int argc, char **argv)
	/* options descriptor */
	struct option longopts[] = {
		{ "automatic",	no_argument,		NULL,	'A' },
-
		{ "plist",	required_argument,	NULL,	'f' },
-
		{ "root",	required_argument,	NULL,	'i' },
+
		{ "debug",      no_argument,		NULL,	'd' },
		{ "legacy",	no_argument,		NULL,	'l' },
		{ "manifest",	required_argument,	NULL,	'M' },
		{ "metadata",	required_argument,	NULL,	'm' },
		{ "old",	no_argument,		NULL,	'O' },
-
		{ "test",	no_argument,		NULL,	't' },
+
		{ "plist",	required_argument,	NULL,	'f' },
		{ "relocate",	required_argument,	NULL, 	1 },
+
		{ "root",	required_argument,	NULL,	'i' },
+
		{ "test",	no_argument,		NULL,	't' },
		{ NULL,		0,			NULL,	0},
	};