mirror of
https://github.com/infiniteCable2/openpilot.git
synced 2026-09-06 00:03:42 +08:00
e47a2e6e30
old-commit-hash: dd34ccfe288ebda8e2568cf550994ae890379f45
8 lines
168 B
Python
Executable File
8 lines
168 B
Python
Executable File
#!/usr/bin/env python
|
|
import os
|
|
|
|
assert os.system("make") == 0
|
|
os.environ['LD_LIBRARY_PATH'] = "/system/lib64:"+os.environ['LD_LIBRARY_PATH']
|
|
os.execv("./ui", ["ui"])
|
|
|