mirror of
https://github.com/sunnypilot/sunnypilot.git
synced 2026-07-23 18:42:10 +08:00
13aee3754b
date: 2026-07-20T11:52:50
master commit: bae7e49626
11 lines
183 B
Python
Executable File
11 lines
183 B
Python
Executable File
#!/usr/bin/env python3
|
|
import subprocess
|
|
import sys
|
|
|
|
from openpilot.common.prefix import OpenpilotPrefix
|
|
|
|
with OpenpilotPrefix():
|
|
ret = subprocess.call(sys.argv[1:])
|
|
|
|
sys.exit(ret)
|