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)
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]

old mode 100755 (executable)
new mode 100644 (file)
old mode 100755 (executable)
new mode 100644 (file)
old mode 100755 (executable)
new mode 100644 (file)
old mode 100755 (executable)
new mode 100644 (file)
old mode 100755 (executable)
new mode 100644 (file)