mirror of
https://github.com/sunnypilot/sunnypilot.git
synced 2026-06-19 16:52:06 +08:00
f5d1c4f371
* check newline
* nothing catches this
old-commit-hash: 97da129e11
12 lines
180 B
Python
Executable File
12 lines
180 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)
|