mirror of
https://github.com/BlueWallet/BlueWallet.git
synced 2024-11-19 18:00:17 +01:00
8 lines
137 B
Bash
Executable File
8 lines
137 B
Bash
Executable File
#!/bin/sh
|
|
if [[ "$OSTYPE" == "darwin"* ]]; then
|
|
echo "Running pod update..."
|
|
cd ios
|
|
pod install
|
|
cd ..
|
|
fi
|