mirror of
https://github.com/QRouland/SGTool.git
synced 2026-06-17 02:36:57 +00:00
10 lines
189 B
Bash
10 lines
189 B
Bash
|
|
#!/bin/sh
|
||
|
|
|
||
|
|
if ! command -v pb-rs &> /dev/null
|
||
|
|
then
|
||
|
|
echo "Failed to find pb-rs command"
|
||
|
|
echo "To install it run : cargo install pb-rs"
|
||
|
|
exit 1
|
||
|
|
fi
|
||
|
|
|
||
|
|
pb-rs src/protos/stormgate.proto
|