From 35c3faf68ca81b02fd70dd61c7a72e9f6d6f46f1 Mon Sep 17 00:00:00 2001 From: adator <85586985+adator85@users.noreply.github.com> Date: Sun, 26 Oct 2025 21:15:05 +0100 Subject: [PATCH] Fix the previous configuration.json check in the installation file --- core/installation.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/core/installation.py b/core/installation.py index fd70754..dcbe1e4 100644 --- a/core/installation.py +++ b/core/installation.py @@ -85,9 +85,9 @@ class Install: # If the Python version is not good then Exit exit("[!] Python version error [!]") - if not os.path.exists(os.path.join(self.config.defender_install_folder, 'config', 'configuration.json')): + if not os.path.exists(os.path.join(self.config.defender_install_folder, 'config', 'configuration.yaml')): # If configuration file do not exist - exit("[!] Configuration file (core/configuration.json) doesn't exist! please create it [!]") + exit("[!] Configuration file (core/configuration.yaml) doesn't exist! please create it [!]") # Exclude Windows OS from the installation if os.name == 'nt':