From e0d3557e14e52da0426471b565496eb36712c0e9 Mon Sep 17 00:00:00 2001 From: Erik Huizinga Date: Mon, 21 Sep 2026 22:28:03 +0200 Subject: [PATCH] fix(gradle): remove echo when running gradlew (#12893) --- plugins/gradle/gradle.plugin.zsh | 1 - 1 file changed, 1 deletion(-) diff --git a/plugins/gradle/gradle.plugin.zsh b/plugins/gradle/gradle.plugin.zsh index dacc46478..4f457055a 100644 --- a/plugins/gradle/gradle.plugin.zsh +++ b/plugins/gradle/gradle.plugin.zsh @@ -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 "$@"