Chore: Stop tracking files based on .gitignore update.

Untracked files matching the following rules:
- Rule "*.old": 1 file
This commit is contained in:
VALLONGOL 2025-05-05 10:32:30 +02:00
parent d9c981908b
commit 0e61eab154
2 changed files with 2 additions and 1 deletions

2
.gitignore vendored
View File

@ -5,7 +5,7 @@ build/
_dist/ _dist/
_build/ _build/
*.ini *.ini
*.old
# Python cache files # Python cache files
__pycache__/ __pycache__/
*.py[cod] *.py[cod]

View File

@ -548,6 +548,7 @@ class RemoteActionHandler:
# --- Analyze Result --- # --- Analyze Result ---
stdout_full: str = push_result.stdout if push_result.stdout else "" stdout_full: str = push_result.stdout if push_result.stdout else ""
stderr_full: str = push_result.stderr if push_result.stderr else "" stderr_full: str = push_result.stderr if push_result.stderr else ""
stderr_lower: str = stderr_full.lower()
combined_output_lower: str = (stdout_full + stderr_full).lower() combined_output_lower: str = (stdout_full + stderr_full).lower()
if push_result.returncode == 0: if push_result.returncode == 0: