Commit 5bf99a0c authored by Nikolay Igotti's avatar Nikolay Igotti

Better reporting

parent 36218f1d
...@@ -415,7 +415,9 @@ fun remoteSign(signHost: String, lib: File, out: File) { ...@@ -415,7 +415,9 @@ fun remoteSign(signHost: String, lib: File, out: File) {
} else { } else {
val outSize = out.length() val outSize = out.length()
if (outSize < 200 * 1024) { if (outSize < 200 * 1024) {
throw GradleException("Output is too short: $outSize") val content = out.readText()
println(content)
throw GradleException("Output is too short $outSize: ${content.take(200)}...")
} }
} }
} }
......
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