We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 4c78956 commit bd7ba1fCopy full SHA for bd7ba1f
1 file changed
make-appimage.sh
@@ -14,7 +14,10 @@ export DESKTOP=/usr/share/applications/org.kde.filelight.desktop
14
# Deploy dependencies
15
quick-sharun /usr/bin/filelight
16
17
-# Additional changes can be done in between here
+# TODO remove me once qml deployment is improved
18
+for lib in $(find ./AppDir/lib/qt6/qml -type f -name '*.so*'); do
19
+ ldd "$lib" | awk -F"[> ]" '{print $4}' | xargs -I {} cp -vn {} ./AppDir/lib || :
20
+done
21
22
# Turn AppDir into AppImage
23
quick-sharun --make-appimage
0 commit comments