From bab0fcab35a5e279a539d51b48abc24854deb98e Mon Sep 17 00:00:00 2001 From: Maxim Belkin Date: Thu, 5 Dec 2019 13:37:44 -0600 Subject: [PATCH] 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 | 0 bin/lesson_initialize.py | 0 bin/repo_check.py | 0 bin/test_lesson_check.py | 0 bin/workshop_check.py | 0 5 files changed, 0 insertions(+), 0 deletions(-) mode change 100755 => 100644 bin/lesson_check.py mode change 100755 => 100644 bin/lesson_initialize.py mode change 100755 => 100644 bin/repo_check.py mode change 100755 => 100644 bin/test_lesson_check.py mode change 100755 => 100644 bin/workshop_check.py diff --git a/bin/lesson_check.py b/bin/lesson_check.py old mode 100755 new mode 100644 diff --git a/bin/lesson_initialize.py b/bin/lesson_initialize.py old mode 100755 new mode 100644 diff --git a/bin/repo_check.py b/bin/repo_check.py old mode 100755 new mode 100644 diff --git a/bin/test_lesson_check.py b/bin/test_lesson_check.py old mode 100755 new mode 100644 diff --git a/bin/workshop_check.py b/bin/workshop_check.py old mode 100755 new mode 100644 -- 2.30.2