mitchell852 closed pull request #2487: remove use of /usr/local/go URL: https://github.com/apache/trafficcontrol/pull/2487
This is a PR merged from a forked repository. As GitHub hides the original diff on merge, it is displayed below for the sake of provenance: As this is a foreign pull request (from a fork), the diff is supplied below (as it won't show otherwise due to GitHub magic): diff --git a/traffic_ops/install/bin/install_goose.sh b/traffic_ops/install/bin/install_goose.sh index 5b444f6eb..66fd6a8cc 100755 --- a/traffic_ops/install/bin/install_goose.sh +++ b/traffic_ops/install/bin/install_goose.sh @@ -14,14 +14,11 @@ # limitations under the License. # -GO_BINARY=/usr/local/go/bin/go - echo "Now installing goose" export GOPATH=/opt/traffic_ops/go mkdir -p $GOPATH -echo "GO_BINARY: $GO_BINARY" -$GO_BINARY get bitbucket.org/liamstask/goose/cmd/goose -$GO_BINARY get github.com/lib/pq +go get bitbucket.org/liamstask/goose/cmd/goose +go get github.com/lib/pq echo "Successfully installed goose to $GOPATH/bin/goose" ---------------------------------------------------------------- This is an automated message from the Apache Git Service. To respond to the message, please log on GitHub and use the URL above to go to the specific comment. For queries about this service, please contact Infrastructure at: [email protected] With regards, Apache Git Services
