mirror of
https://gitlab.com/veilid/veilidchat.git
synced 2025-07-25 15:35:29 -04:00
8 lines
226 B
Bash
Executable file
8 lines
226 B
Bash
Executable file
#!/bin/bash
|
|
set -e
|
|
dart run build_runner build --delete-conflicting-outputs
|
|
|
|
pushd lib > /dev/null
|
|
protoc --dart_out=proto -I proto -I dht_support/proto dht.proto
|
|
protoc --dart_out=proto -I proto veilid.proto
|
|
popd > /dev/null
|