BlueWallet/scripts/podinstall.sh

8 lines
147 B
Bash
Raw Normal View History

2019-05-02 22:33:03 +02:00
#!/usr/bin/env bash
2020-07-24 16:47:58 +02:00
if [[ "$OSTYPE" == "darwin"* ]]; then
2019-08-04 07:18:56 +02:00
echo "Running pod update..."
2019-07-15 16:43:01 +02:00
cd ios
pod install
2020-07-24 16:47:58 +02:00
cd ..
2019-05-02 22:33:03 +02:00
fi