From b71d7561f92f6b90aa0584676ab2498709ddab05 Mon Sep 17 00:00:00 2001 From: Mike Urbanski Date: Mon, 27 Nov 2023 17:28:19 -0600 Subject: [PATCH] Update main.py Move deprecation notice to end to ensure it gets seen --- bridgecrew/main.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/bridgecrew/main.py b/bridgecrew/main.py index e7294aa8..785a4dc4 100644 --- a/bridgecrew/main.py +++ b/bridgecrew/main.py @@ -10,6 +10,6 @@ def run(): if __name__ == "__main__": + run() print("DEPRECATED: This project is no longer supported and will be archived end of 2023.") print(" Please use checkov instead, pip install checkov") - run()