mirror of
https://github.com/dragonpilot/dragonpilot.git
synced 2026-02-19 02:54:01 +08:00
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"])
|
|
|