You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@trafficcontrol.apache.org by zr...@apache.org on 2023/01/20 20:59:55 UTC

[trafficcontrol] branch master updated: fix syntax (#7305)

This is an automated email from the ASF dual-hosted git repository.

zrhoffman pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/trafficcontrol.git


The following commit(s) were added to refs/heads/master by this push:
     new deae075a33 fix syntax (#7305)
deae075a33 is described below

commit deae075a338bb59c5ac3b2ce5b38ea2d80c7580a
Author: Eric Holguin <14...@users.noreply.github.com>
AuthorDate: Fri Jan 20 13:59:49 2023 -0700

    fix syntax (#7305)
---
 infrastructure/cdn-in-a-box/traffic_ops_integration_test/Dockerfile | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/infrastructure/cdn-in-a-box/traffic_ops_integration_test/Dockerfile b/infrastructure/cdn-in-a-box/traffic_ops_integration_test/Dockerfile
index 5111047bae..a7f76b3fc5 100644
--- a/infrastructure/cdn-in-a-box/traffic_ops_integration_test/Dockerfile
+++ b/infrastructure/cdn-in-a-box/traffic_ops_integration_test/Dockerfile
@@ -46,7 +46,7 @@ WORKDIR /go/src/github.com/apache/trafficcontrol/traffic_ops/testing/api
 RUN go mod vendor -v
 
 RUN set -o errexit -o xtrace;\
-    for api_version in v{3..5}; do\
+    for api_version in v3 v4 v5; do\
         go test -c ./$api_version -ldflags="-w -s" -o traffic_ops_${api_version}_integration_test;\
     done