Reputation: 1320
There are "gradlew" and "gradle.bat" in the root dir of project!,I can use "gradlew" in Mac and WIndows ,but can not use it in Linux! What should I do to use it? Thank you for tell me!
Upvotes: 0
Views: 92
Reputation: 1373
It probably doesn't have executable permissions. Try chmod +x gradlew
and then ./gradlew
should work normally
Upvotes: 2