Skip to content

Commit

Permalink
fix: linux appimage black screen
Browse files Browse the repository at this point in the history
Not sure it this is the correct way, but it fixed the missing libs error.
  • Loading branch information
virt-10 authored Oct 29, 2024
1 parent 912819e commit 0c7fbe8
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 0c7fbe8

Please sign in to comment.