mirror of
https://github.com/status-im/status-go.git
synced 2025-01-09 14:16:21 +00:00
14 lines
246 B
Bash
Executable File
14 lines
246 B
Bash
Executable File
#!/usr/bin/env bash
|
|
|
|
if [ -x "$(command -v apt)" ]; then
|
|
apt install -y protobuf-compiler jq
|
|
fi
|
|
|
|
if [ -x "$(command -v pacman)" ]; then
|
|
pacman -Sy protobuf jq --noconfirm
|
|
fi
|
|
|
|
if [ -x "$(command -v brew)" ]; then
|
|
brew install protobuf jq
|
|
fi
|