aboutsummaryrefslogtreecommitdiffstats
path: root/modulemanager
diff options
context:
space:
mode:
authorGravatar Sadie Powell2025-03-14 12:38:38 +0000
committerGravatar Sadie Powell2025-03-14 12:38:38 +0000
commite03e6c32f18fedd6b4c2ea69bf0ef503a0045be8 (patch)
tree784241e7c890d925969a659643f4bc79b2c9b117 /modulemanager
parentMerge branch 'insp4' into master. (diff)
parentAdd support for ModLink directives in modulemanager. (diff)
Merge branch 'insp4' into master.
Diffstat (limited to 'modulemanager')
-rwxr-xr-xmodulemanager8
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;
}