From f754baa65043496bdde7bcc5ebd456a087cc682b Mon Sep 17 00:00:00 2001 From: pandatick <62118105+pandatickk@users.noreply.github.com> Date: Sun, 28 Dec 2025 06:08:10 +0400 Subject: [PATCH] Include all .bat instead general-*.bat (#7879) --- utils/test zapret.ps1 | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/utils/test zapret.ps1 b/utils/test zapret.ps1 index a90aa51..0ee19d8 100644 --- a/utils/test zapret.ps1 +++ b/utils/test zapret.ps1 @@ -384,7 +384,7 @@ $dpiTargets = Build-DpiTargets -CustomUrl $dpiCustomUrl # Config $targetDir = $rootDir if (-not $targetDir) { $targetDir = Split-Path -Parent $MyInvocation.MyCommand.Path } -$batFiles = Get-ChildItem -Path $targetDir -Filter "general*.bat" | Sort-Object Name +$batFiles = Get-ChildItem -Path $targetDir -Filter "*.bat" | Where-Object { $_.Name -notlike "service*" } | Sort-Object Name $globalResults = @()