rustdesk/build_appimage.py

12 lines
399 B
Python
Raw Normal View History

2022-05-29 10:14:22 +08:00
#!/usr/bin/python3
import os
if __name__ == '__main__':
os.chdir("appimage")
ret = os.system("appimage-builder --recipe AppImageBuilder.yml --skip-test")
if ret == 0:
print("RustDesk AppImage build success :)")
print("Check AppImage in '/path/to/rustdesk/appimage/RustDesk-VERSION-TARGET_PLATFORM.AppImage'")
else:
print("RustDesk AppImage build failed :(")