divijvaidya opened a new pull request, #13861: URL: https://github.com/apache/kafka/pull/13861
Before this PR the file permissions did not allow this file to be an executable: ``` $ ./reviewers.py zsh: permission denied: ./reviewers.py ``` ``` $ ls -ld reviewers.py |awk '{ print $1; }' -rw-r--r-- ``` Change ``` chmod +x reviewers.py ``` After this PR: ``` $ ls -ld reviewers.py |awk '{ print $1; }' -rwxr-xr-x ``` Note that other python executables such as `release.py` also have the permission `-rwxr-xr-x` -- This is an automated message from the Apache Git Service. To respond to the message, please log on to GitHub and use the URL above to go to the specific comment. To unsubscribe, e-mail: jira-unsubscr...@kafka.apache.org For queries about this service, please contact Infrastructure at: us...@infra.apache.org