mirror of
https://github.com/firestar5683/StarPilot.git
synced 2026-06-30 11:02:19 +08:00
89d1d84c70
old-commit-hash: cf80f7a28b
8 lines
169 B
Python
Executable File
8 lines
169 B
Python
Executable File
#!/usr/bin/env python3
|
|
import os
|
|
|
|
assert os.system("make") == 0
|
|
os.environ['LD_LIBRARY_PATH'] = "/system/lib64:"+os.environ['LD_LIBRARY_PATH']
|
|
os.execv("./ui", ["ui"])
|
|
|