11 lines
310 B
Bash
11 lines
310 B
Bash
#!/bin/bash
|
|
cd $(dirname $0)
|
|
set -euo pipefail
|
|
if [[ ! -f "protos.js" ]]; then
|
|
echo "Please download the WhatsApp JavaScript modules with protobuf schemas into protos.js first"
|
|
exit 1
|
|
fi
|
|
node parse-proto.js
|
|
protoc --go_out=. --go_opt=paths=source_relative --go_opt=embed_raw=true */*.proto
|
|
pre-commit run -a
|