10 lines
126 B
Bash
10 lines
126 B
Bash
|
#!/bin/sh -ex
|
||
|
|
||
|
sleep 5
|
||
|
|
||
|
echo "Working dir: $(pwd)"
|
||
|
|
||
|
go get -d -v ./...
|
||
|
|
||
|
exec goconvey -host 0.0.0.0 -launchBrowser false "$@"
|