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/
|
_dist/
|
||||||
_build/
|
_build/
|
||||||
*.ini
|
*.ini
|
||||||
|
*.old
|
||||||
# Python cache files
|
# Python cache files
|
||||||
__pycache__/
|
__pycache__/
|
||||||
*.py[cod]
|
*.py[cod]
|
||||||
@ -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:
|
||||||
|
|||||||
Loading…
Reference in New Issue
Block a user