mirror of
https://gitlab.com/famedly/fluffychat.git
synced 2024-11-16 08:59:31 +01:00
10 lines
152 B
Bash
10 lines
152 B
Bash
|
#!/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
|