We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
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
Regarding check-shebang-scripts-are-executable
check-shebang-scripts-are-executable
The suggestion when a file is not executable and it is supposed to be is:
FILE: has a shebang but is not marked executable! If it is supposed to be executable, try: `chmod +x FILE`
But chmod +x FILE is not enough in my setup, I have to do git update-index --chmod=+x FILE .
chmod +x FILE
git update-index --chmod=+x FILE
I propose to add that suggestion to output.
The text was updated successfully, but these errors were encountered:
please send a patch, there's an equivalent message for the other executable check that you can copy
Sorry, something went wrong.
Ok, made PR #773 #774 where I updated both messages the message I mentionned.
Successfully merging a pull request may close this issue.
Regarding
check-shebang-scripts-are-executable
The suggestion when a file is not executable and it is supposed to be is:
But
chmod +x FILE
is not enough in my setup, I have to dogit update-index --chmod=+x FILE
.I propose to add that suggestion to output.
The text was updated successfully, but these errors were encountered: