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