1
0

proper .gitignore for gradlew in git

This commit is contained in:
Michael Hoennig
2022-09-21 14:31:59 +02:00
parent 0feea6b2d6
commit 08f51a196e
4 changed files with 18 additions and 17 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.