Skip to content

Commit

Permalink
Merge pull request #47266 from vvoland/ci-fix-makeps1-templatefail-24
Browse files Browse the repository at this point in the history
[24.0 backport] hack/make.ps1: Fix go list pattern
  • Loading branch information
thaJeztah committed Jan 31, 2024
2 parents 61c51fb + db968c6 commit 141ad39
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion hack/make.ps1
Expand Up @@ -348,7 +348,7 @@ Function Run-UnitTests() {
Function Run-IntegrationTests() {
$escRoot = [Regex]::Escape($root)
$env:DOCKER_INTEGRATION_DAEMON_DEST = $bundlesDir + "\tmp"
$dirs = go list -test -f '{{- if ne .ForTest `"`" -}}{{- .Dir -}}{{- end -}}' .\integration\...
$dirs = go list -test -f '{{- if ne .ForTest "" -}}{{- .Dir -}}{{- end -}}' .\integration\...
ForEach($dir in $dirs) {
# Normalize directory name for using in the test results files.
$normDir = $dir.Trim()
Expand Down

0 comments on commit 141ad39

Please sign in to comment.