fluffychat/scripts/build-ios.sh

11 lines
147 B
Bash
Raw Normal View History

2020-12-08 14:46:47 +00:00
#!/bin/sh -ve
2020-11-21 10:36:13 +00:00
flutter channel stable
flutter upgrade
flutter clean
flutter pub get
cd ios
pod install
pod update
cd ..
2020-12-08 14:46:47 +00:00
flutter build ios --release