mirror of
https://github.com/status-im/status-go.git
synced 2025-01-10 14:47:06 +00:00
14 lines
229 B
Bash
14 lines
229 B
Bash
|
#!/bin/bash
|
||
|
|
||
|
if [ -x "$(command -v apt)" ]; then
|
||
|
apt install -y protobuf-compiler
|
||
|
fi
|
||
|
|
||
|
if [ -x "$(command -v pacman)" ]; then
|
||
|
pacman -Sy protobuf --noconfirm
|
||
|
fi
|
||
|
|
||
|
if [ -x "$(command -v brew)" ]; then
|
||
|
brew install protobuf
|
||
|
fi
|