mirror of
https://github.com/emsesp/EMS-ESP32.git
synced 2025-12-07 00:09:51 +03:00
12 lines
163 B
Python
12 lines
163 B
Python
import os
|
|
|
|
Import("env")
|
|
|
|
def run_native():
|
|
print("Running native...")
|
|
os.system("pio run -e native")
|
|
|
|
if not (env.IsCleanTarget()):
|
|
run_native()
|
|
|