fluffychat/scripts/build-ios.sh

10 lines
152 B
Bash
Raw Normal View History

2020-11-21 10:36:13 +00:00
#!/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