Skip to content

Commit

Permalink
Ignore warnings about core_perl in downloadFiles.ps1
Browse files Browse the repository at this point in the history
  • Loading branch information
reuteras committed Sep 12, 2024
1 parent 625fa97 commit 4365c99
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion downloadFiles.ps1
Original file line number Diff line number Diff line change
Expand Up @@ -341,7 +341,8 @@ $warnings = Get-ChildItem .\log\* -Recurse | Select-String -Pattern "warning" |
$_.Line -notmatch "delete mode " -and
$_.Line -notmatch "rename " -and
$_.Line -notmatch "reinstalling" -and
$_.Line -notmatch "origin/main Updating"
$_.Line -notmatch "origin/main Updating" -and
$_.Line -notmatch "core_perl"
}

$errors = Get-ChildItem .\log\* -Recurse | Select-String -Pattern "error" | Where-Object {
Expand Down

0 comments on commit 4365c99

Please sign in to comment.