aboutsummaryrefslogtreecommitdiff
path: root/main.c
diff options
context:
space:
mode:
Diffstat (limited to 'main.c')
-rw-r--r--main.c5
1 files changed, 3 insertions, 2 deletions
diff --git a/main.c b/main.c
index 56d6eb37..3a50f395 100644
--- a/main.c
+++ b/main.c
@@ -58,18 +58,19 @@ void toy_init(struct toy_list *which, char *argv[])
toys.argv = argv;
toys.exitval = 1;
if (which->options) get_optflags();
+ else toys.optargs = argv+1;
}
// Run a toy.
void toy_exec(char *argv[])
{
struct toy_list *which;
-
+
which = toy_find(argv[0]);
if (!which) return;
toy_init(which, argv);
-
+
exit(toys.which->toy_main());
}