mirror of
https://github.com/dragonpilot/dragonpilot.git
synced 2026-02-24 11:54:11 +08:00
12 lines
180 B
Python
12 lines
180 B
Python
|
|
#!/usr/bin/env python3
|
||
|
|
import subprocess
|
||
|
|
import sys
|
||
|
|
|
||
|
|
from openpilot.common.prefix import OpenpilotPrefix
|
||
|
|
|
||
|
|
|
||
|
|
with OpenpilotPrefix():
|
||
|
|
ret = subprocess.call(sys.argv[1:])
|
||
|
|
|
||
|
|
exit(ret)
|