Upgrade to Gradle 7.5.1 (#269)

This commit is contained in:
Abe Pazos
2022-08-24 05:48:50 +00:00
committed by GitHub
parent 86fc6e2b49
commit c398aaa392
4 changed files with 15 additions and 7 deletions

6
gradlew vendored
View File

@@ -205,6 +205,12 @@ set -- \
org.gradle.wrapper.GradleWrapperMain \
"$@"
# Stop when "xargs" is not available.
if ! command -v xargs >/dev/null 2>&1
then
die "xargs is not available"
fi
# Use "xargs" to parse quoted args.
#
# With -n1 it outputs one arg per line, with the quotes and backslashes removed.