Skip to content

Commit 667bc3f

Browse files
authored
Merge pull request #47265 from vvoland/ci-fix-makeps1-templatefail-25
[25.0 backport] hack/make.ps1: Fix go list pattern
2 parents 71fa3ab + 1b47bfa commit 667bc3f

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

hack/make.ps1

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -348,7 +348,7 @@ Function Run-UnitTests() {
348348
Function Run-IntegrationTests() {
349349
$escRoot = [Regex]::Escape($root)
350350
$env:DOCKER_INTEGRATION_DAEMON_DEST = $bundlesDir + "\tmp"
351-
$dirs = go list -test -f '{{- if ne .ForTest `"`" -}}{{- .Dir -}}{{- end -}}' .\integration\...
351+
$dirs = go list -test -f '{{- if ne .ForTest "" -}}{{- .Dir -}}{{- end -}}' .\integration\...
352352
ForEach($dir in $dirs) {
353353
# Normalize directory name for using in the test results files.
354354
$normDir = $dir.Trim()

0 commit comments

Comments
 (0)