BlueWallet/scripts/podinstall.sh

8 lines
147 B
Bash
Raw Normal View History

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