Skip to content

Commit

Permalink
Gradle 8.5
Browse files Browse the repository at this point in the history
  • Loading branch information
rpalcolea committed Nov 29, 2023
1 parent 3217d5e commit 8a67050
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 1 deletion.
2 changes: 1 addition & 1 deletion gradle/wrapper/gradle-wrapper.properties
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
distributionBase=GRADLE_USER_HOME
distributionPath=wrapper/dists
distributionUrl=https\://services.gradle.org/distributions/gradle-8.4-bin.zip
distributionUrl=https\://services.gradle.org/distributions/gradle-8.5-bin.zip
networkTimeout=10000
validateDistributionUrl=true
zipStoreBase=GRADLE_USER_HOME
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -81,6 +81,10 @@ class GitWriteCommandsUtil implements Serializable {
it.standardOutput = output
it.errorOutput = error
}
def errorMsg = new String(error.toByteArray(), Charset.defaultCharset())
if(errorMsg) {
throw new GradleException(errorMsg)
}
return new String(output.toByteArray(), Charset.defaultCharset())
}
}

0 comments on commit 8a67050

Please sign in to comment.