Skip to content

Commit

Permalink
Merge pull request #637 from virt-10/virt-10-patch-1
Browse files Browse the repository at this point in the history
fix(ci): linux appimage black screen
  • Loading branch information
danemadsen authored Nov 4, 2024
2 parents da1dce0 + 0c7fbe8 commit 3b25297
Showing 1 changed file with 4 additions and 1 deletion.
5 changes: 4 additions & 1 deletion .github/workflows/build-linux.yml
Original file line number Diff line number Diff line change
Expand Up @@ -88,7 +88,10 @@ jobs:
chmod +x AppDir/maid
echo '#!/bin/bash
HERE="$(dirname "$(readlink -f "${0}")")"
exec "$HERE/maid" "$@"' > AppDir/AppRun
(
export LD_LIBRARY_PATH="${HERE}/lib:${LD_LIBRARY_PATH}"
exec "${HERE}/maid" "$@"
)' > AppDir/AppRun
chmod +x AppDir/AppRun
- name: Create AppImage
Expand Down

0 comments on commit 3b25297

Please sign in to comment.