Unverified Commit 3d09f939 authored by Todd Volkert's avatar Todd Volkert Committed by GitHub

Make Gradle error message more specific (#31850)

parent 74c6237a
...@@ -126,7 +126,7 @@ class FlutterPlugin implements Plugin<Project> { ...@@ -126,7 +126,7 @@ class FlutterPlugin implements Plugin<Project> {
} }
flutterJar = Paths.get(engineOut.absolutePath, "flutter.jar").toFile() flutterJar = Paths.get(engineOut.absolutePath, "flutter.jar").toFile()
if (!flutterJar.isFile()) { if (!flutterJar.isFile()) {
throw new GradleException('Local engine build does not contain flutter.jar') throw new GradleException('File not found: ' + flutterJar)
} }
localEngine = engineOut.name localEngine = engineOut.name
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment