fix(gradle): remove echo when running gradlew (#12893)

This commit is contained in:
Erik Huizinga
2026-09-21 13:28:03 -07:00
committed by GitHub
parent b6830a53d5
commit e0d3557e14
-1
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 "$@"