Upgrade cloud & gradle, fix unregistering of plugins command

This commit is contained in:
Frank van der Heijden 2022-08-21 14:00:26 +02:00
parent f444c42a2f
commit 9e54ce35da
No known key found for this signature in database
GPG key ID: 4BC514A52A496F84
10 changed files with 29 additions and 16 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.