mirror of
https://github.com/ohmyzsh/ohmyzsh.git
synced 2024-11-26 07:40:07 +00:00
gradle: run gradle command instead of alias (#8620)
- Similarly to the mvn plugin - Without this fix, the shell crashes in some cases
This commit is contained in:
parent
3ec04997eb
commit
a6df94d2c6
1 changed files with 1 additions and 1 deletions
|
@ -7,7 +7,7 @@ gradle-or-gradlew() {
|
||||||
echo "executing gradlew instead of gradle";
|
echo "executing gradlew instead of gradle";
|
||||||
./gradlew "$@";
|
./gradlew "$@";
|
||||||
else
|
else
|
||||||
gradle "$@";
|
command gradle "$@";
|
||||||
fi
|
fi
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue