You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@trafficcontrol.apache.org by oc...@apache.org on 2021/03/19 19:20:18 UTC

[trafficcontrol] branch 5.1.x updated: Fix incorrect path to 'go' binary (#5660)

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

ocket8888 pushed a commit to branch 5.1.x
in repository https://gitbox.apache.org/repos/asf/trafficcontrol.git


The following commit(s) were added to refs/heads/5.1.x by this push:
     new 06b03e4  Fix incorrect path to 'go' binary (#5660)
06b03e4 is described below

commit 06b03e450ebb99bdebefccbf20de82d9941f28c3
Author: ocket8888 <oc...@apache.org>
AuthorDate: Fri Mar 19 13:20:05 2021 -0600

    Fix incorrect path to 'go' binary (#5660)
---
 .github/actions/tp-e2e-tests/entrypoint.sh | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/.github/actions/tp-e2e-tests/entrypoint.sh b/.github/actions/tp-e2e-tests/entrypoint.sh
index d68a5ea..7f2cf4c 100755
--- a/.github/actions/tp-e2e-tests/entrypoint.sh
+++ b/.github/actions/tp-e2e-tests/entrypoint.sh
@@ -161,7 +161,7 @@ ln -s "$PWD" "$SRCDIR/trafficcontrol"
 
 cd "$SRCDIR/trafficcontrol/traffic_ops/traffic_ops_golang"
 
-/usr/local/go/bin/go get -v golang.org/x/net/publicsuffix\
+go get -v golang.org/x/net/publicsuffix\
 	golang.org/x/crypto/ed25519 \
 	golang.org/x/crypto/scrypt \
 	golang.org/x/net/idna \
@@ -169,7 +169,7 @@ cd "$SRCDIR/trafficcontrol/traffic_ops/traffic_ops_golang"
 	golang.org/x/net/ipv6 \
 	golang.org/x/sys/unix \
 	golang.org/x/text/secure/bidirule > /dev/null
-/usr/local/go/bin/go build . > /dev/null
+go build . > /dev/null
 
 openssl req -new -x509 -nodes -newkey rsa:4096 -out localhost.crt -keyout localhost.key -subj "/CN=tptests";