Skip to content

Commit

Permalink
Merge pull request #5085 from okurz/fix/delete_serial_terminal_user
Browse files Browse the repository at this point in the history
Fix non-deleted serial_terminal_user.txt
  • Loading branch information
Martchus committed Apr 21, 2023
2 parents 7c97c3f + 230df53 commit 52c94a9
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion lib/OpenQA/Schema/Result/Jobs.pm
Original file line number Diff line number Diff line change
Expand Up @@ -1126,7 +1126,8 @@ sub delete_logs ($self) {
return undef unless $result_dir;
my @files = (
Mojo::Collection->new(
map { path($result_dir, $_) } qw(autoinst-log.txt serial0.txt serial_terminal.txt video_time.vtt)
map { path($result_dir, $_) }
qw(autoinst-log.txt serial0.txt serial_terminal.txt serial_terminal_user.txt video_time.vtt)
),
path($result_dir, 'ulogs')->list_tree({hidden => 1}),
find_video_files($result_dir),
Expand Down

0 comments on commit 52c94a9

Please sign in to comment.