From 4365c99aa3e90ff0b5a75effa686a8397f16dab6 Mon Sep 17 00:00:00 2001 From: Coding for fun Date: Thu, 12 Sep 2024 13:07:35 +0200 Subject: [PATCH] Ignore warnings about core_perl in downloadFiles.ps1 --- downloadFiles.ps1 | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/downloadFiles.ps1 b/downloadFiles.ps1 index b28d597..3dca81e 100644 --- a/downloadFiles.ps1 +++ b/downloadFiles.ps1 @@ -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 {