lbryschema.go/build.sh

8 lines
157 B
Bash
Raw Normal View History

2017-09-06 16:31:28 +02:00
#!/bin/bash
set -euxo pipefail
echo "Building protobuf files"
rm -rf pb/*.pb.go
protoc --go_out=. pb/*.proto
2017-11-08 03:41:07 +01:00
go build ./...
go build ./cli/lbryschema-cli.go