fluffychat/scripts/build-ios.sh

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