SergioLuis / CHIPEIT

A CHIP-8 emulator for Android, written in Kotlin
GNU General Public License v3.0
3 stars 1 forks source link

Fix gradlew permissions #21

Closed mikelcaz closed 6 years ago

mikelcaz commented 6 years ago

Developer: @mikelcaz Reviewer: @SergioLuis Integrator: @SergioLuis


Gradlew (gradle wrapper) files need the executable bit set on unix, as it should be. We are using (octal) 0755 on the other gradlew ones (chipeitlib/android), being console/gradlew the newcomer. As it was created on a Windows machine, we forget to verify it.

If we need more new executables, we should test them on unix systems first.

SergioLuis commented 6 years ago

PR #22 fixes this.