Make setup.sh and build.sh executable#199
Conversation
|
@tyler-lutz There's no description in the PR or the commit and github doesn't provide any diff at the file execution flag level. What did you do to set these as executable? Was it just a |
|
I just used |
|
@AristurtleDev you can see in the files changed section the mode modification: 644 -> 755 means he added executable bit for each category to the file, each one of those numbers represents a category (owner, group, others), and each number uses 3 bits for read(1 << 2), write(1 << 1) and execute(1 << 0). |
I was asking because I had an issue in another repository where changing them with just |
|
@AristurtleDev Is core.filemode set to false in your git config. If it is that would be why you had to use The mode changes here are correct so they should be good to merge. |
d7491a9 to
0de6ee1
Compare


No description provided.