mirror of
https://github.com/gomods/athens
synced 2026-02-03 11:00:32 +00:00
Remove ref to vendor for go build in e2e script. (#1360)
This commit is contained in:
committed by
Aaron Schlesinger
parent
eb4ebdb612
commit
0404b20756
+1
-1
@@ -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
|
||||
|
||||
Reference in New Issue
Block a user