Update Gradle to match Paper

This commit is contained in:
2022-12-10 22:30:30 -06:00
parent 6b23f8bc8f
commit fcbea8dbf2
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.