mirror of
https://github.com/firestar5683/StarPilot.git
synced 2026-06-29 10:32:10 +08:00
9abcfabc5f
old-commit-hash: 8a9ed94f5f
8 lines
169 B
Python
Executable File
8 lines
169 B
Python
Executable File
#!/usr/bin/env python2
|
|
import os
|
|
|
|
assert os.system("make") == 0
|
|
os.environ['LD_LIBRARY_PATH'] = "/system/lib64:"+os.environ['LD_LIBRARY_PATH']
|
|
os.execv("./ui", ["ui"])
|
|
|