mirror of
https://github.com/42wim/matterbridge.git
synced 2024-11-24 03:32:02 -08:00
2f33fe86f5
* Update dependencies and build to go1.22 * Fix api changes wrt to dependencies * Update golangci config
10 lines
275 B
Bash
10 lines
275 B
Bash
#!/bin/bash
|
|
cd $(dirname $0)
|
|
set -euo pipefail
|
|
if [[ ! -f "e2ee.js" ]]; then
|
|
echo "Please download the encryption javascript file and save it to e2ee.js first"
|
|
exit 1
|
|
fi
|
|
node parse-proto.js
|
|
protoc --go_out=. --go_opt=paths=source_relative --go_opt=embed_raw=true */*.proto
|