Skip to content

Commit e8f671c

Browse files
authored
Update AppRun
1 parent 7cbe483 commit e8f671c

File tree

1 file changed

+4
-3
lines changed

1 file changed

+4
-3
lines changed

AppDir/AppRun

Lines changed: 4 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -21,9 +21,10 @@ _get_symlinks() {
2121
esac
2222
mkdir -p "$BINDIR"
2323
for link do
24-
if [ ! -x "$link" ] || [ ! -f "$link" ]; then
25-
continue
26-
fi
24+
case "$link" in
25+
*xdg-open|*.hook|lib*) continue;;
26+
*) [ -x "$link" ] || continue;;
27+
esac
2728
link="${link##*/}"
2829
ln -s "$APPIMAGE" "$BINDIR"/"$link" 2>/dev/null \
2930
&& echo "'$link' successfully created in '$BINDIR'"

0 commit comments

Comments
 (0)