File tree 2 files changed +5
-2
lines changed
packages/flutter_tools/gradle 2 files changed +5
-2
lines changed Original file line number Diff line number Diff line change 2
2
3
3
TAG=" ${CIRRUS_TAG:- latest} "
4
4
5
- sudo docker push " gcr.io/flutter-cirrus/build-flutter-image:$TAG "
5
+ # Convert "+" to "-" to make hotfix tags legal Docker tag names.
6
+ # See https://docs.docker.com/engine/reference/commandline/tag/
7
+ TAG=${TAG/ +/ -}
6
8
9
+ sudo docker push " gcr.io/flutter-cirrus/build-flutter-image:$TAG "
Original file line number Diff line number Diff line change @@ -353,7 +353,7 @@ class FlutterPlugin implements Plugin<Project> {
353
353
return
354
354
}
355
355
Project dependencyProject = project. rootProject. findProject(" :$pluginDependencyName " )
356
- if (dependencyProject == null ) {
356
+ if (! dependencyProject . projectDir . exists() || dependencyProject == null ) {
357
357
return
358
358
}
359
359
// Wait for the Android plugin to load and add the dependency to the plugin project.
You can’t perform that action at this time.
0 commit comments