Bump Gradle Wrapper from 7.4.2 to 7.5 in /.github/workflow-samples/groovy-dsl

This commit is contained in:
bot-githubaction 2022-07-15 02:59:55 +00:00
parent 64a1064eca
commit d742f2f6db
No known key found for this signature in database
GPG key ID: 2A0E7C409B09D92A
4 changed files with 16 additions and 8 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.