diff options
author | Konstantinos Sideris <sideris.konstantin@gmail.com> | 2018-06-22 23:54:35 +0300 |
---|---|---|
committer | Konstantinos Sideris <sideris.konstantin@gmail.com> | 2018-06-22 23:54:35 +0300 |
commit | 2749afbb91116c5f45989d4ab0073acbebbf8c7d (patch) | |
tree | db70ffaf7bc754e8bae14913480b7f3ebfa020e5 /.ci/linux/deploy.sh | |
parent | Immediately shutdown the http client on exit (diff) | |
download | nheko-2749afbb91116c5f45989d4ab0073acbebbf8c7d.tar.xz |
Fix the appimage generation
Diffstat (limited to '.ci/linux/deploy.sh')
-rwxr-xr-x | .ci/linux/deploy.sh | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/.ci/linux/deploy.sh b/.ci/linux/deploy.sh index 7b5b8e4a..a721f2be 100755 --- a/.ci/linux/deploy.sh +++ b/.ci/linux/deploy.sh @@ -32,6 +32,10 @@ unset LD_LIBRARY_PATH export ARCH=$(uname -m) +if [ ! -z $TRAVIS_TAG ]; then + export LD_LIBRARY_PATH=.deps/usr/lib/:/opt/qt${QT_PKG}/lib/:$LD_LIBRARY_PATH +fi + ./linuxdeployqt*.AppImage ${DIR}/usr/share/applications/*.desktop -bundle-non-qt-libs ./linuxdeployqt*.AppImage ${DIR}/usr/share/applications/*.desktop -appimage |