Skip to content
This repository was archived by the owner on Feb 1, 2024. It is now read-only.

Commit 3c5fe11

Browse files
committed
Add "./bin/protogen" to "just build"
This step is necessary when building because it generates the python protobuf bindings from the sawtooth proto files. This requires installing python grpcio-tools (for example, with pip). Signed-off-by: Shawn T. Amundson <amundson@bitwise.io>
1 parent cd9dfe6 commit 3c5fe11

File tree

1 file changed

+3
-0
lines changed

1 file changed

+3
-0
lines changed

justfile

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -37,6 +37,9 @@ features := '\
3737
build:
3838
#!/usr/bin/env sh
3939
set -e
40+
cmd="./bin/protogen"
41+
echo "\033[1m$cmd\033[0m"
42+
$cmd
4043
for feature in $(echo {{features}})
4144
do
4245
for crate in $(echo {{crates}})

0 commit comments

Comments
 (0)