mirror of
https://github.com/sunnypilot/sunnypilot.git
synced 2026-07-11 11:42:09 +08:00
5f02379e32
date: 2026-06-21T11:50:59
master commit: 01a843e0ac
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)
|