SinTh0r4s / ExampleMod1.7.10

An example mod for Minecraft 1.7.10 with Forge focussed on a stable setup.
MIT License
28 stars 103 forks source link

chmod +x gradlew for mac and linux #29

Closed bombcar closed 2 years ago

bombcar commented 2 years ago

this may be where they're coming from ...

SinTh0r4s commented 2 years ago

@TheElan

TheElan commented 2 years ago

chmod +x basically marks things as executable (e.g. scripts, binaries) on unix systems.

that's odd, I was having the impression that it was already allowed to execute...

Probably we can remove chmod +x step from workflows now

TheElan commented 2 years ago

Looks fine to me - would merge

bombcar commented 2 years ago

A chmod +x isn’t noticed by git unless you do trickery sometimes, so even if it ran it may not “take”.

git update-index --chmod=+x path/to/file

most git GUIs handle this for you.