CI: Fix unused variables

This commit is contained in:
Dan Church 2023-07-24 14:07:19 -05:00
parent 2d06e1bd1b
commit ed9e369069
Signed by: h3xx
GPG Key ID: EA2BF379CD2CDBD0
1 changed files with 0 additions and 9 deletions

View File

@ -105,15 +105,6 @@ sub prep_tar {
sub run_script_capture {
my @args = @_;
my @cmd = (SCRIPT, @args);
my $stderr = File::Temp->new(
TMPDIR => 1,
CLEANUP => 1,
);
my $stdout = File::Temp->new(
TMPDIR => 1,
CLEANUP => 1,
);
my $in = '';
my $child_out = gensym();
my $child_err = gensym();