You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
{{ message }}
This repository has been archived by the owner on Jan 26, 2021. It is now read-only.
GW wrapper always emits a helper message before running Gradle: "Using gradle at '${gradle}' to run buildfile '${build_gradle}':\n"
Unfortunately Zsh completion for gradle does not expect it and can not parse gradle output.
Making it optionally-controlled via a parameter would allow me to configure it once via alias and forget about it.
Right now I'm using this workaround: [[ -x ./gradlew ]] && ./gradlew "$@" || gw "$@"
Which uses raw gradlew when it's present.
Pros: Zsh completion works!
Cons: It only works in the root project folder
The text was updated successfully, but these errors were encountered:
GW wrapper always emits a helper message before running Gradle:
"Using gradle at '${gradle}' to run buildfile '${build_gradle}':\n"
Unfortunately Zsh completion for gradle does not expect it and can not parse gradle output.
Making it optionally-controlled via a parameter would allow me to configure it once via alias and forget about it.
Right now I'm using this workaround:
[[ -x ./gradlew ]] && ./gradlew "$@" || gw "$@"
Which uses raw
gradlew
when it's present.The text was updated successfully, but these errors were encountered: