Closed viktorbenei closed 8 years ago
If the project was generated on Windows / gradlew was generated on Windows there's a chance that the gradlew file won't have executable bit on Linux/Unix.
gradlew
To solve this we should chmod +x the gradlew file (if it exists) before calling it.
chmod +x
Fixed, the new version will include this
If the project was generated on Windows /
gradlew
was generated on Windows there's a chance that thegradlew
file won't have executable bit on Linux/Unix.To solve this we should
chmod +x
the gradlew file (if it exists) before calling it.