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 #22

Closed mikelcaz closed 6 years ago

mikelcaz commented 6 years ago

Gradlew (gradle wrapper) files need the executable bit set on unix, as it should be.

We are using (octal) 0755 on the chipeitlib/android ones, 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.

PD: Please, rebase to this point before commiting the new branches.

ugedo commented 6 years ago

ok, I'll pay attention