mirror of
https://github.com/espressif/esp-idf.git
synced 2025-08-09 12:35:28 +00:00
tools: add system check to verify Python versions and Windows Defender status
This commit is contained in:
@@ -0,0 +1,10 @@
|
||||
#!/usr/bin/env python
|
||||
|
||||
import sys
|
||||
expected_executable = sys.argv[1]
|
||||
active_executable = sys.executable
|
||||
if expected_executable != active_executable:
|
||||
print("Failure. Expected executable does not match current executable.")
|
||||
print("Expected:", expected_executable)
|
||||
print("Active: ", active_executable)
|
||||
sys.exit(1)
|
Reference in New Issue
Block a user