From 4365eda7c2b3beab68fad12e4cd250ed5a581199 Mon Sep 17 00:00:00 2001 From: xarkes Date: Sat, 19 Jan 2019 11:30:57 +0100 Subject: [PATCH] Fixed .travis.yml due to new linuxdeployqt The new version of linuxdeployqt (AppImage) seems to change the name of the created AppImage. --- .travis.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.travis.yml b/.travis.yml index c36f0031..9fe3574a 100644 --- a/.travis.yml +++ b/.travis.yml @@ -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