Commit 3c078276 by Alexander Popov

Add a wrapper for using the tool without installation via setuptools

parent 18c23c0e
#!/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
if __name__ == "__main__":
kconfig_hardened_check.main()
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment