feat: appimage package script

revert: flutter lock file
This commit is contained in:
Kingtous
2022-06-09 17:30:26 +08:00
parent 0eeb0bacbd
commit 618be48726
10 changed files with 166 additions and 171 deletions

11
build_appimage.py Normal file → Executable file
View File

@@ -1,8 +1,11 @@
#!/usr/bin/python3
import os
if __name__ == '__main__':
pass
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 :(")