Skip to content

Commit

Permalink
Merge pull request #7350 from gurevichmark/pod_warnings
Browse files Browse the repository at this point in the history
Dummy pod files need content
  • Loading branch information
besawn committed Mar 1, 2023
2 parents f392229 + 459cbe6 commit 82aa917
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion xCAT-client/xpod2man
Original file line number Diff line number Diff line change
Expand Up @@ -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;
Expand Down

0 comments on commit 82aa917

Please sign in to comment.