File tree 1 file changed +12
-1
lines changed
1 file changed +12
-1
lines changed Original file line number Diff line number Diff line change @@ -43,6 +43,17 @@ patchelf_path="$(which patchelf)"
43
43
strip_path=" $( which strip) "
44
44
45
45
export UPD_INFO=" gh-releases-zsync|linuxdeploy|linuxdeploy-plugin-qt|continuous|linuxdeploy-plugin-qt-$ARCH .AppImage"
46
+ export OUTPUT=" linuxdeploy-plugin-qt-$ARCH .AppImage"
47
+
48
+ # special set of builds using a different experimental runtime, used for testing purposes
49
+ if [[ " ${USE_STATIC_RUNTIME:- } " != " " ]]; then
50
+ custom_runtime_url=" https://github.com/AppImage/type2-runtime/releases/download/continuous/runtime-$ARCH "
51
+ wget " $custom_runtime_url "
52
+ runtime_filename=" $( echo " $custom_runtime_url " | rev | cut -d/ -f1 | rev) "
53
+ LDAI_RUNTIME_FILE=" $( readlink -f " $runtime_filename " ) "
54
+ export LDAI_RUNTIME_FILE
55
+ export OUTPUT=" linuxdeploy-static-plugin-qt-$ARCH .AppImage"
56
+ fi
46
57
47
58
wget " https://github.com/TheAssassin/linuxdeploy/releases/download/continuous/linuxdeploy-$ARCH .AppImage"
48
59
# qemu is not happy about the AppImage type 2 magic bytes, so we need to "fix" that
@@ -56,4 +67,4 @@ chmod +x linuxdeploy*.AppImage
56
67
-e " $strip_path " \
57
68
--output appimage
58
69
59
- mv linuxdeploy-plugin-qt- " $ARCH " .AppImage * " $OLD_CWD " /
70
+ mv " $OUTPUT " * " $OLD_CWD " /
You can’t perform that action at this time.
0 commit comments