mirror of
https://github.com/BlueWallet/BlueWallet.git
synced 2025-02-22 15:04:50 +01:00
8 lines
210 B
Bash
Executable file
8 lines
210 B
Bash
Executable file
#!/usr/bin/env bash
|
|
echo "AppCenter XCode Project: "
|
|
echo $APPCENTER_XCODE_PROJECT
|
|
echo
|
|
if [[ "$APPCENTER_XCODE_PROJECT" == "BlueWallet" && "$OSTYPE" == "darwin"* ]]; then
|
|
cd ios
|
|
pod install
|
|
fi
|