Merge pull request #689 from pujitm/master

Suggest usable call when executable files lack shebang on Windows
This commit is contained in:
Anthony Sottile 2021-12-07 16:03:45 -05:00 committed by GitHub
commit ccecdbda02
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -64,6 +64,8 @@ def _message(path: str) -> None:
f'{path}: marked executable but has no (or invalid) shebang!\n'
f" If it isn't supposed to be executable, try: "
f'`chmod -x {shlex.quote(path)}`\n'
f' If on Windows, you may also need to: '
f'`git add --chmod=-x {shlex.quote(path)}`\n'
f' If it is supposed to be executable, double-check its shebang.',
file=sys.stderr,
)