You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
result = subprocess.run(command, shell=True, capture_output=True, text=True, timeout=30)
583
+
result = subprocess.run(command, shell=(sys.platform == "win32"), capture_output=True, text=True, timeout=30)
584
584
end_time = time.time()
585
585
duration = end_time - start_time
586
586
success = result.returncode == 0
@@ -1011,4 +1011,4 @@ EOF
1011
1011
1012
1012
**Diagnostic Philosophy**: Approach problems systematically - start with basic verification, isolate components, test hypotheses, and apply targeted solutions. Document findings for future reference and community benefit.
1013
1013
1014
-
**Emergency Contact**: For critical system failures, use the complete recovery protocol above. If issues persist after recovery, document the full diagnostic output and seek community support through GitHub issues.
1014
+
**Emergency Contact**: For critical system failures, use the complete recovery protocol above. If issues persist after recovery, document the full diagnostic output and seek community support through GitHub issues.
0 commit comments