diff --git a/customize-WebUI.py b/customize-WebUI.py index 2c19e1f..682858a 100644 --- a/customize-WebUI.py +++ b/customize-WebUI.py @@ -52,7 +52,7 @@ def ensureDirectory(path): # MARK: Copy sources def copySources(config, destinationDirectory): """Copy files and folders according to copy rules.""" - print("Starting source file & folder copy and replace process...") + print(f"{Colors.YELLOW}Starting source file & folder copy and replace process...{Colors.RESET}") for rule in config.get('copy_rules', []): for source in rule.get('sources', []): try: @@ -148,7 +148,7 @@ def copySources(config, destinationDirectory): # MARK: Modify files def modifyFiles(config, destinationDirectory): """Modify files according to modification rules.""" - print("Starting file modification process...") + print(f"{Colors.YELLOW}Starting file modification process...{Colors.RESET}") for rule in config.get('modification_rules', []): filePattern = rule.get('file_pattern', '*') print(f"\nProcessing files matching pattern: {filePattern}")