mirror of
https://github.com/sunnypilot/sunnypilot.git
synced 2026-06-27 11:42:10 +08:00
8e97a4c797
date: 2026-06-26T11:50:35
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)
|