Update gradlew wrapper

This commit is contained in:
tibs 2022-08-18 20:40:44 -04:00
parent 4de7fe39e5
commit 161d7b850e
Signed by untrusted user who does not match committer: tibs
GPG key ID: 047833989F50F88F
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.