| 77 | } |
| 78 | |
| 79 | static int cmd__submodule_check_url(int argc, const char **argv) |
| 80 | { |
| 81 | struct option options[] = { |
| 82 | OPT_END() |
| 83 | }; |
| 84 | argc = parse_options(argc, argv, "test-tools", options, |
| 85 | submodule_check_url_usage, 0); |
| 86 | if (argc) |
| 87 | usage_with_options(submodule_check_url_usage, options); |
| 88 | |
| 89 | return check_submodule(check_submodule_url); |
| 90 | } |
| 91 | |
| 92 | static int cmd__submodule_is_active(int argc, const char **argv) |
| 93 | { |
nothing calls this directly
no test coverage detected