status-go/_assets/scripts/install_deps.sh

15 lines
383 B
Bash
Raw Normal View History

2020-04-06 07:54:06 +00:00
#!/usr/bin/env bash
if [[ -x $(command -v apt) ]]; then
apt install -y protobuf-compiler jq
elif [[ -x $(command -v pacman) ]]; then
pacman -Sy protobuf jq --noconfirm
elif [[ -x $(command -v brew) ]]; then
brew install protobuf jq
elif [[ -x $(command -v nix-env) ]]; then
nix-env -iA nixos.protobuf3_13
else
echo "ERROR: No known package manager found!" >&2
exit 1
fi