Compare commits

...

2 Commits

Author SHA1 Message Date
Erik Huizinga 21118b85f3
Merge 702e64edde into d689aa289e 2025-01-19 11:20:20 +01:00
Erik Huizinga 702e64edde
Remove echo from gradle plugin
When using this plugin and running e.g. `gradle --quiet`, the echo statement would print to stdout. I figured that I could make it respect the `--quiet` flag (and possibly various other situations in which echoing isn't expected to print to stdout), but as a much simpler approach it can also be removed altogether unless there is a reason to keep it.
2025-01-07 11:23:30 +01:00
1 changed files with 0 additions and 1 deletions

View File

@ -15,7 +15,6 @@ function gradle-or-gradlew() {
# if gradlew found, run it instead of gradle
if [[ -f "$project_root/gradlew" ]]; then
echo "executing gradlew instead of gradle"
"$project_root/gradlew" "$@"
else
command gradle "$@"