Remove unnecessary GitHub Actions step #93
Reference in New Issue
Block a user
Delete Branch "remove-unnecessary-chmod-x"
Deleting a branch is permanent. Although the deleted branch may continue to exist for a short time before it actually gets removed, it CANNOT be undone in most cases. Continue?
"make gradle wrapper executable" is unnecessary because the file already has the executable bit set in the repository.
PR #71, where this was added
https://github.com/FabricMC/fabric-example-mod/pull/71/files#r516437188
@ByMartrixx Thanks, didn't spot that but I now see why this was kept :)
That said, I would ask, isn't the point of CI to spot mistakes like that? To me it seems better if CI fails and prevents someone from accidentally removing the
xbit so that it can be fixed before a PR is merged, rather than the problem being passed down to people using this template who might not know what's wrong if they're unfamiliar with Unix permissions.No, like ByMartrixx pointed out this is fine as-is. On windows it can be a PITA to set that flag so CI builds.
Thanks anyway.
Pull request closed