Fixed .travis.yml due to new linuxdeployqt

The new version of linuxdeployqt (AppImage)
seems to change the name of the created
AppImage.
This commit is contained in:
xarkes 2019-01-19 11:30:57 +01:00
parent 0b37c12f75
commit 4365eda7c2

View File

@ -106,7 +106,7 @@ after_success:
LD_LIBRARY_PATH=$CUSTOM_PYTHON_PREFIX/lib ./linuxdeployqt*.AppImage ./appdir/usr/share/applications/*.desktop -appimage -no-strip -exclude-libs=libnss3.so,libnssutil3.so -ignore-glob=usr/lib/python3.6/** -verbose=2 &&
find ./appdir -executable -type f -exec ldd {} \; | grep " => /usr" | cut -d " " -f 2-3 | sort | uniq &&
export APPIMAGE_FILE="Cutter-v$CUTTER_VERSION-x64.Linux.AppImage" &&
mv Cutter-x86_64.AppImage "$APPIMAGE_FILE" &&
mv Cutter-*-x86_64.AppImage "$APPIMAGE_FILE" &&
export FILE_TO_UPLOAD="$APPIMAGE_FILE"
; fi