Chore: Stop tracking files based on .gitignore update.
Untracked files matching the following rules: - Rule "*.old": 1 file
This commit is contained in:
parent
d9c981908b
commit
0e61eab154
2
.gitignore
vendored
2
.gitignore
vendored
@ -5,7 +5,7 @@ build/
|
||||
_dist/
|
||||
_build/
|
||||
*.ini
|
||||
|
||||
*.old
|
||||
# Python cache files
|
||||
__pycache__/
|
||||
*.py[cod]
|
||||
@ -548,6 +548,7 @@ class RemoteActionHandler:
|
||||
# --- Analyze Result ---
|
||||
stdout_full: str = push_result.stdout if push_result.stdout 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()
|
||||
|
||||
if push_result.returncode == 0:
|
||||
|
||||
Loading…
Reference in New Issue
Block a user