Remove executable bits from Python scripts
authorMaxim Belkin <maxim.belkin@gmail.com>
Thu, 5 Dec 2019 19:37:44 +0000 (13:37 -0600)
committerMaxim Belkin <maxim.belkin@gmail.com>
Thu, 5 Dec 2019 19:37:44 +0000 (13:37 -0600)
commitbab0fcab35a5e279a539d51b48abc24854deb98e
tree54c32a9b33e781e724c2e6253349b4c675a22c29
parenta61b7f63ee2694b4ef7494f88bb864ab05576869
Remove executable bits from Python scripts

We can't use a single shebang:
* on some platforms `python` may mean Python 2, on others - Python 3
* on some platforms `python3` does not exist at all

Therefore, we're removing the shebangs altogether.
bin/lesson_check.py [changed mode: 0755->0644]
bin/lesson_initialize.py [changed mode: 0755->0644]
bin/repo_check.py [changed mode: 0755->0644]
bin/test_lesson_check.py [changed mode: 0755->0644]
bin/workshop_check.py [changed mode: 0755->0644]