From 63dd696908476f97fcebf709476a4a1d571518d6 Mon Sep 17 00:00:00 2001 From: Noisyfox Date: Sun, 5 Oct 2025 16:46:11 +0800 Subject: [PATCH] Fix profile checker --- scripts/orca_extra_profile_check.py | 3 +++ 1 file changed, 3 insertions(+) diff --git a/scripts/orca_extra_profile_check.py b/scripts/orca_extra_profile_check.py index 38d737b88f..cb5075a764 100644 --- a/scripts/orca_extra_profile_check.py +++ b/scripts/orca_extra_profile_check.py @@ -64,6 +64,9 @@ def check_filament_compatible_printers(vendor_folder): # Use rglob to recursively find .json files. for file_path in vendor_path.rglob("*.json"): + if file_path.name == 'filaments_color_codes.json': # Ignore non-profile file + continue + try: with open(file_path, 'r', encoding='UTF-8') as fp: # Use custom hook to detect duplicates.