diff --git a/.dockerignore b/.dockerignore deleted file mode 100644 index 3a5374b0..00000000 --- a/.dockerignore +++ /dev/null @@ -1,6 +0,0 @@ -.git/ -.github/ - -# Ignore output directories -output/ -junit-reports/ diff --git a/prowler/lib/check/check.py b/prowler/lib/check/check.py index 742163d8..e571b1a2 100644 --- a/prowler/lib/check/check.py +++ b/prowler/lib/check/check.py @@ -341,7 +341,7 @@ def execute_checks( sys.exit() except Exception as error: logger.error( - f"{error.__class__.__name__}[{error.__traceback__.tb_lineno}]: {error}" + f"{check_name} - {error.__class__.__name__}[{error.__traceback__.tb_lineno}]: {error}" ) bar.title = f"-> {Fore.GREEN}Scan completed!{Style.RESET_ALL}" return all_findings diff --git a/util/cloud9-installation.sh b/util/cloud9-installation.sh index 6bd88b14..a45f28cf 100644 --- a/util/cloud9-installation.sh +++ b/util/cloud9-installation.sh @@ -14,6 +14,4 @@ cd ~/environment/ || exit # Prepare Prowler 3.0 git clone https://github.com/prowler-cloud/prowler cd prowler || exit -git checkout prowler-3.0-dev -sudo pip3 install pipenv detect-secrets==1.0.3 pipenv install && pipenv shell