lbryschema.go/build.sh
2017-11-07 21:41:07 -05:00

8 lines
No EOL
157 B
Bash
Executable file

#!/bin/bash
set -euxo pipefail
echo "Building protobuf files"
rm -rf pb/*.pb.go
protoc --go_out=. pb/*.proto
go build ./...
go build ./cli/lbryschema-cli.go