Travis.yml ./gradlew : Permission denied
It depends by the exec-permission to your unix gradlew script. It can be fixed using the command: git update-index –chmod=+x gradlew A little desciption to understand the problem. First of all you can check your permissions using: git ls-tree HEAD You will see: 100644 blob xxxxxxxxxxx gradlew As you can see the file has 644 … Read more