mirror of
https://github.com/BlueWallet/BlueWallet.git
synced 2025-02-23 07:15:35 +01:00
7 lines
147 B
Bash
Executable file
7 lines
147 B
Bash
Executable file
#!/usr/bin/env bash
|
|
if [[ "$OSTYPE" == "darwin"* ]]; then
|
|
echo "Running pod update..."
|
|
cd ios
|
|
pod install
|
|
cd ..
|
|
fi
|