-
Notifications
You must be signed in to change notification settings - Fork 152
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Fix executable flags #113
base: master
Are you sure you want to change the base?
Fix executable flags #113
Conversation
Remove flag from json, swift, c, h, m files Add flag to pl, py, r, rb files
This is close, but there are still a few discrepancies. This command:
shows a few files that are still marked executable, but should not be:
That list includes a ruby script that does not have a shebang line. Adding a shebang would make its execute bit reasonable. If the "not" operator is moved from after
Though if the binaries in that list (everything except for |
That is more bash that I normally string together. But your command is also giving me an error of I personally try to keep executable files with their executable flag set even though it is just about as easy to type |
@themobiusproject Sorry, I use zsh and I've gotten so used to it that I sometimes forget which features are standard. In bash you can substitute |
@cebtenzzre Thank you for the bash fix and I am glad that my comment could clue you in to the problem. I am going to dissect that command a bit and try to add pieces to my repertoire. |
Remove executable flag from json, swift, c, h, m files
Add executable flag to pl, py, r, rb files
Resolves #87