TheGreyGhost / MinecraftByExample

Working sample code for the basic concepts in Minecraft and Forge.
Other
1.24k stars 187 forks source link

set executable bit for gradle wrapper script #34

Closed basti1302 closed 6 years ago

basti1302 commented 6 years ago

The file gradlew is the gradle wrapper script which is used to run gradle tasks on *nix operating systems. It needs to be executable. Sure, everyone cloning the repo can manually flip the executable bit locally after cloning it, but it is good style to set these bits correctly directly in the repo so everything is ready to go after checkout.

TheGreyGhost commented 6 years ago

Hi That's curious. The gradlew file came directly from the Forge MDK, but it's possible that being on a Windows file system has messed with the permissions. It's been quite a while since I used any *nix systems. I'll take your word for it, hopefully it fixes the problem. Cheers TGG