mirror of
https://gitlab.com/famedly/fluffychat.git
synced 2024-11-05 03:29:30 +01:00
11 lines
147 B
Bash
Executable File
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
|