Skip to content

Commit b133def

Browse files
authored
Merge pull request #41 from Vilez0/qt-path-fix
fix appimage qt path and appimage tool link
2 parents 7b656b5 + 3570070 commit b133def

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

appimage/create_appimage.sh

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
#!/bin/bash
22
set -e
33
if [ "$QT_PATH" == "" ] ; then
4-
export QT_PATH="/usr/lib64/qt5"
4+
export QT_PATH="/usr/lib64/qt6"
55
fi
66
# cleanup
77
rm -rf build || true
@@ -28,7 +28,7 @@ ldd $(find build/appimage -type f) build/pardus-pen | cut -f3 -d" " | sort -V |
2828
fi
2929
done
3030
# create appimage
31-
wget https://github.com/AppImage/AppImageKit/releases/download/13/appimagetool-$(uname -m).AppImage -O build/appimagetool
31+
wget https://github.com/AppImage/appimagetool/releases/download/latest/appimagetool-$(uname -m).AppImage -O build/appimagetool
3232
chmod 755 build/appimagetool
3333
export ARCH=$(uname -m)
3434
cd build ; ./appimagetool ./appimage

0 commit comments

Comments
 (0)