2
0
mirror of https://gitlab.com/famedly/fluffychat.git synced 2024-12-25 15:02:33 +01:00
fluffychat/scripts/build-ios.sh
2020-12-08 14:46:47 +00:00

11 lines
147 B
Bash
Executable File

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