mirror of
https://github.com/status-im/status-go.git
synced 2025-01-12 23:55:03 +00:00
fix: apt -> apt-get (#2775)
there's a default /usr/bin/apt cli in macos
This commit is contained in:
parent
6967732a06
commit
d1ef1a3e31
@ -1,7 +1,7 @@
|
||||
#!/usr/bin/env bash
|
||||
|
||||
if [[ -x $(command -v apt) ]]; then
|
||||
apt install -y protobuf-compiler jq
|
||||
if [[ -x $(command -v apt-get) ]]; then
|
||||
apt-get install -y protobuf-compiler jq
|
||||
elif [[ -x $(command -v pacman) ]]; then
|
||||
pacman -Sy protobuf jq --noconfirm
|
||||
elif [[ -x $(command -v brew) ]]; then
|
||||
|
Loading…
x
Reference in New Issue
Block a user