diff options
| author | 2025-03-14 12:38:38 +0000 | |
|---|---|---|
| committer | 2025-03-14 12:38:38 +0000 | |
| commit | e03e6c32f18fedd6b4c2ea69bf0ef503a0045be8 (patch) | |
| tree | 784241e7c890d925969a659643f4bc79b2c9b117 /modulemanager | |
| parent | Merge branch 'insp4' into master. (diff) | |
| parent | Add support for ModLink directives in modulemanager. (diff) | |
Merge branch 'insp4' into master.
Diffstat (limited to 'modulemanager')
| -rwxr-xr-x | modulemanager | 8 |
1 files changed, 8 insertions, 0 deletions
diff --git a/modulemanager b/modulemanager index f4c471e68..d895a3fad 100755 --- a/modulemanager +++ b/modulemanager @@ -345,6 +345,14 @@ for my $mod (sort keys %todo) { for my $tag (get_directives("$RealDir/modules/$mod.cpp", 'ModConfig', 0)) { say " $tag" if $tag; } + + my @links = get_directives("$RealDir/src/modules/$mod.cpp", 'ModLink', 0); + if (@links) { + say "You can find out more information about this module at:"; + for my $link (@links) { + say " * $link" if $link; + } + } } else { printf "\nHTTP %s: %s\n", $response->code, $response->message; } |
