You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
command: if ! test -f "flutter_sdk.zip"; then curl -o flutter_sdk.zip https://storage.googleapis.com/flutter_infra/releases/stable/macos/flutter_macos_1.20.4-stable.zip; fi
43
+
command: if ! test -f "~/flutter_sdk.zip"; then curl -o ~/flutter_sdk.zip https://storage.googleapis.com/flutter_infra/releases/stable/macos/flutter_macos_1.20.4-stable.zip; fi
44
44
- run:
45
45
name: unzip flutter SDK
46
-
command: unzip flutter_sdk.zip
46
+
command: unzip ~/flutter_sdk.zip -d ~
47
+
- run: flutter doctor
47
48
- run:
48
49
name: Flutter build
49
50
command: cd ..; flutter build aot
@@ -85,13 +86,13 @@ jobs:
85
86
command: sudo gem install cocoapods
86
87
- run:
87
88
name: download flutter SDK
88
-
command: if ! test -f "~/Downloads/flutter_sdk.zip"; then curl -o ~/Downloads/flutter_sdk.zip https://storage.googleapis.com/flutter_infra/releases/stable/macos/flutter_macos_1.20.4-stable.zip; fi
89
+
command: if ! test -f "~/flutter_sdk.zip"; then curl -o ~/flutter_sdk.zip https://storage.googleapis.com/flutter_infra/releases/stable/macos/flutter_macos_1.20.4-stable.zip; fi
0 commit comments