From 77c4bae5b4526034a69583046c8b01bc1ebf0cdd Mon Sep 17 00:00:00 2001 From: TheAssassin Date: Wed, 20 Jun 2018 03:52:10 +0200 Subject: [PATCH] Rename AppImage in build script to fix filesystem error --- travis/build.sh | 7 +++++-- 1 file changed, 5 insertions(+), 2 deletions(-) diff --git a/travis/build.sh b/travis/build.sh index ca3178c..4c23b7e 100755 --- a/travis/build.sh +++ b/travis/build.sh @@ -44,10 +44,13 @@ mv linuxdeploy-plugin-appimage*.AppImage AppDir/usr/bin/ # build AppImage using plugin AppDir/usr/bin/linuxdeploy-plugin-appimage*.AppImage --appdir AppDir/ +# rename AppImage to avoid "Text file busy" issues when using it to create another one +mv ./linuxdeploy-plugin-appimage*.AppImage test.AppImage + # verify that the resulting AppImage works -./linuxdeploy*.AppImage "${LINUXDEPLOY_ARGS[@]}" +./test.AppImage "${LINUXDEPLOY_ARGS[@]}" # check whether AppImage plugin is found and works -./linuxdeploy*.AppImage "${LINUXDEPLOY_ARGS[@]}" --output appimage +./test.AppImage "${LINUXDEPLOY_ARGS[@]}" --output appimage mv linuxdeploy*.AppImage "$OLD_CWD"