mirror of
https://github.com/firestar5683/StarPilot.git
synced 2026-06-30 11:02:19 +08:00
e47a2e6e30
old-commit-hash: dd34ccfe28
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"])
|
|
|