We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 7cbe483 commit e8f671cCopy full SHA for e8f671c
AppDir/AppRun
@@ -21,9 +21,10 @@ _get_symlinks() {
21
esac
22
mkdir -p "$BINDIR"
23
for link do
24
- if [ ! -x "$link" ] || [ ! -f "$link" ]; then
25
- continue
26
- fi
+ case "$link" in
+ *xdg-open|*.hook|lib*) continue;;
+ *) [ -x "$link" ] || continue;;
27
+ esac
28
link="${link##*/}"
29
ln -s "$APPIMAGE" "$BINDIR"/"$link" 2>/dev/null \
30
&& echo "'$link' successfully created in '$BINDIR'"
0 commit comments