kconfig-hardened-check -> kernel-hardening-checker
[kconfig-hardened-check.git] / bin / kconfig-hardened-check
diff --git a/bin/kconfig-hardened-check b/bin/kconfig-hardened-check
deleted file mode 100755 (executable)
index aad06b4..0000000
+++ /dev/null
@@ -1,15 +0,0 @@
-#!/usr/bin/python3
-
-# For using the tool without installation via setuptools
-
-import os
-import sys
-import inspect
-
-current_dir = os.path.dirname(os.path.abspath(inspect.getfile(inspect.currentframe())))
-parent_dir = os.path.dirname(current_dir)
-sys.path.insert(0, parent_dir)
-
-import kconfig_hardened_check
-
-kconfig_hardened_check.main()