CI: Close file handles ASAP

This commit is contained in:
Dan Church 2023-07-20 15:11:25 -05:00
parent e0c91b4647
commit a8db0b17fe
Signed by: h3xx
GPG Key ID: EA2BF379CD2CDBD0
1 changed files with 1 additions and 0 deletions

View File

@ -25,6 +25,7 @@ sub put_file {
for (my $bytes_written = 0; $bytes_written < $bytes; ++$bytes_written) {
print $fh 'A';
}
close $fh;
}
return;
}