mirror of
https://gitlvb.teallvbs.xyz/IQ.Lvbs/IQ.Pilot.git
synced 2026-04-06 05:13:54 +08:00
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)
|