mirror of
https://github.com/BlueWallet/BlueWallet.git
synced 2025-02-24 15:36:59 +01:00
19 lines
570 B
Bash
Executable file
19 lines
570 B
Bash
Executable file
#!/bin/zsh
|
|
|
|
echo "===== Installling CocoaPods ====="
|
|
export HOMEBREW_NO_INSTALL_CLEANUP=TRUE
|
|
brew install cocoapods
|
|
echo "===== Installing Node.js ====="
|
|
brew install node@21
|
|
echo "===== Installing yarn (Xcode Cloud doenst like NPM ) ====="
|
|
brew install yarn
|
|
|
|
# Install dependencies
|
|
echo "===== Running yarn install ====="
|
|
yarn install
|
|
echo "===== Running pod install ====="
|
|
cd ios
|
|
pod install
|
|
# LDK is not currently available for Catalyst, so we need to patch the wallet
|
|
cd ..
|
|
cp scripts/maccatalystpatches/lightning-ldk-wallet.ts class/wallets/lightning-ldk-wallet.ts
|