tools: add system check to verify Python versions and Windows Defender status

This commit is contained in:
Juraj Michálek
2020-11-26 16:00:55 +01:00
parent a5fd7878db
commit c247c7fe2f
19 changed files with 890 additions and 100 deletions

View File

@@ -0,0 +1,5 @@
#!/usr/bin/env python
import sys
if (sys.version_info > (3, 0)):
import subprocess
subprocess.run("cmd /c echo hello")