Skip to content

Commit fb60324

Browse files
authored
v1.12.13+hotfix.4 cherry-picks (flutter#46632)
* f264d6c Allow plugins that don't support the Android platform * 55f0bdc Fix docker tag during upload as well
1 parent 57f2df7 commit fb60324

File tree

2 files changed

+5
-2
lines changed

2 files changed

+5
-2
lines changed

dev/ci/docker_linux/docker_push.sh

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,5 +2,8 @@
22

33
TAG="${CIRRUS_TAG:-latest}"
44

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/+/-}
68

9+
sudo docker push "gcr.io/flutter-cirrus/build-flutter-image:$TAG"

packages/flutter_tools/gradle/flutter.gradle

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -353,7 +353,7 @@ class FlutterPlugin implements Plugin<Project> {
353353
return
354354
}
355355
Project dependencyProject = project.rootProject.findProject(":$pluginDependencyName")
356-
if (dependencyProject == null) {
356+
if (!dependencyProject.projectDir.exists() || dependencyProject == null) {
357357
return
358358
}
359359
// Wait for the Android plugin to load and add the dependency to the plugin project.

0 commit comments

Comments
 (0)