Remove ref to vendor for go build in e2e script. (#1360)

This commit is contained in:
Bob Maertz
2019-08-28 14:09:07 -04:00
committed by Aaron Schlesinger
parent eb4ebdb612
commit 0404b20756
+1 -1
View File
@@ -40,7 +40,7 @@ export GO111MODULE=on
# Start the proxy in the background and wait for it to be ready
cd $REPO_DIR/cmd/proxy
pkill athens-proxy || true # cleanup proxy if it is running
go build -mod=vendor -o athens-proxy && ./athens-proxy &
go build -o athens-proxy && ./athens-proxy &
while [[ "$(curl -s -o /dev/null -w ''%{http_code}'' localhost:3000/readyz)" != "200" ]]; do sleep 1; done
# Clone our test repo