diff options
Diffstat (limited to 'modulemanager')
| -rwxr-xr-x | modulemanager | 8 |
1 files changed, 8 insertions, 0 deletions
diff --git a/modulemanager b/modulemanager index 81e5fe747..766113284 100755 --- a/modulemanager +++ b/modulemanager @@ -347,6 +347,14 @@ for my $mod (sort keys %todo) { for my $tag (get_directives("$RealDir/src/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; } |
