mirror of
https://github.com/firestar5683/StarPilot.git
synced 2026-06-28 01:52:06 +08:00
52500d88fb
cpp harness old-commit-hash: 8d3bf1f41a52825e43ce9542ee86dea4b32f9b6c
11 lines
179 B
Python
Executable File
11 lines
179 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:])
|
|
|
|
exit(ret) |