Upgrade for 1.19.2 and Gradle 7.5.1

This commit is contained in:
2022-10-26 20:32:44 -07:00
parent 95bda20186
commit e131c50306
22 changed files with 83 additions and 37 deletions

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.