-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathrunner.sh
executable file
·42 lines (28 loc) · 1.26 KB
/
runner.sh
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
#!/bin/bash
# shellcheck disable=SC2046
echo "Running " $(date)
echo "Which command do you want to run to me ..."
_titleList=("0 : For Pod Installation Error for m1Mac" "1: For Pod Installation Error for IntelMac" "2 : Build flutter project to iOS" "3 : Build flutter project to Android" "4: Watch JSON Serialization" "5: Build flutter App Icon" "6: Build Splash Screen")
_cmdList=("cd ios && arch -x86_64 pod install --repo-update && cd .." "flutter clean && flutter pub get && cd ios && pod deintegrate && rm -rf Pods && rm -rf Podfile.lock && pod cache clean --all && pod install && cd .." "flutter clean && flutter build ios && cd ios && open Runner.xcworkspace && cd .." "flutter clean && flutter build appbundle" "dart run build_runner watch --delete-conflicting-outputs" "dart run flutter_launcher_icons:main" "dart run flutter_native_splash:create")
for str in "${_titleList[@]}"; do
echo "$str"
done
echo
# shellcheck disable=SC2162
read command
re='^[0-9]+$'
if ! [[ "$command" =~ $re ]]; then
echo "Invalid digit"
exit
elif [ "$command" -gt 6 ]; then
echo "Invalid number"
elif [ "$command" -lt 0 ]; then
echo "Invalid negative number"
else
echo
fi
echo "====> ${_titleList[$command]}"
echo
eval "${_cmdList[$command]}"
echo
echo "Successfully " $(date)