fluffychat/scripts/build-ios.sh

11 lines
147 B
Bash
Raw Normal View History

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