gradle: run gradle command instead of alias (#8620)

- Similarly to the mvn plugin
- Without this fix, the shell crashes in some cases
master
Jonatan Ivanov 6 years ago committed by GitHub
parent 3ec04997eb
commit a6df94d2c6
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
  1. 2
      plugins/gradle/gradle.plugin.zsh

@ -7,7 +7,7 @@ gradle-or-gradlew() {
echo "executing gradlew instead of gradle";
./gradlew "$@";
else
gradle "$@";
command gradle "$@";
fi
}

Loading…
Cancel
Save