fluffychat/scripts/build-ios.sh

10 lines
152 B
Bash
Executable File

#!/usr/bin/env bash
flutter channel stable
flutter upgrade
flutter clean
flutter pub get
cd ios
pod install
pod update
cd ..
flutter build ios --release