From 3ef1d416303c20ec243dc8853a27c92b7c9ff81e Mon Sep 17 00:00:00 2001 From: pedrooot Date: Wed, 2 Oct 2024 08:46:42 -0600 Subject: [PATCH] feat(inventory): name on output folder --- prowler/providers/common/inventory.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/prowler/providers/common/inventory.py b/prowler/providers/common/inventory.py index 1461298b01..d7c9aec7ff 100644 --- a/prowler/providers/common/inventory.py +++ b/prowler/providers/common/inventory.py @@ -114,7 +114,7 @@ def run_prowler_inventory(checks_to_execute, provider): # end of all things folder_to_compress = f"{output_folder_path}" - output_zip_file = f"{output_folder_path}/rmfx-scan-compressed" # The output file (without extension) + output_zip_file = f"{output_folder_path}/prowler-scan-compressed" # The output file (without extension) # Compress the folder into a zip file shutil.make_archive(f"{output_zip_file}", "zip", folder_to_compress)