Преглед изворни кода

Merge pull request #47265 from vvoland/ci-fix-makeps1-templatefail-25

[25.0 backport] hack/make.ps1: Fix go list pattern
Sebastiaan van Stijn пре 1 година
родитељ
комит
667bc3f803
1 измењених фајлова са 1 додато и 1 уклоњено
  1. 1 1
      hack/make.ps1

+ 1 - 1
hack/make.ps1

@@ -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()