2
0
mirror of https://github.com/xcat2/xcat-core.git synced 2025-06-12 17:30:19 +00:00

Merge pull request #7350 from gurevichmark/pod_warnings

Dummy pod files need content
This commit is contained in:
besawn
2023-03-01 17:51:39 -05:00
committed by GitHub

View File

@ -98,7 +98,7 @@ sub createDummyPods {
mkdir "$poddir/man7";
foreach my $d (@dummyPods) {
if (!open(TMP, ">>$d")) { warn "Could not create dummy pod file $d ($!)\n"; }
else { close TMP; }
else { print TMP "=head1 NAME"; close TMP; }
}
return @dummyPods;