Update help for 'chmod' changes for shebang scripts on Windows

This commit is contained in:
MDW 2022-05-26 16:38:45 +02:00
parent 0a88f14e07
commit cd6d19fe40
2 changed files with 3 additions and 1 deletions

View file

@ -67,7 +67,7 @@ def _message(path: str) -> None:
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'`git update-index --chmod=-x {shlex.quote(path)}`\n'
f' If it is supposed to be executable, double-check its shebang.',
file=sys.stderr,
)

View file

@ -34,6 +34,8 @@ def _message(path: str) -> None:
f'{path}: has a shebang but is not marked executable!\n'
f' If it is supposed to be executable, try: '
f'`chmod +x {shlex.quote(path)}`\n'
f' If on Windows, you may also need to: '
f'`git update-index --chmod=+x {shlex.quote(path)}`\n'
f' If it not supposed to be executable, double-check its shebang '
f'is wanted.\n',
file=sys.stderr,