Skip to content

Commit 756c048

Browse files
authored
fix and improve --make-symlinks
1 parent 7bfe714 commit 756c048

1 file changed

Lines changed: 2 additions & 2 deletions

File tree

AppDir/bin/make-symlinks-in-path.hook

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -8,12 +8,12 @@ _make_symlinks_in_path() {
88
set +e
99
set -- ./*
1010
for b do case "$b" in
11-
*xdg-open|*.hook|*.conf)
11+
*xdg-open|*.hook|*.conf|*txt|*lib64)
1212
continue
1313
;;
1414
*)
1515
b=${b##*/}
16-
ln -sv "$APPIMAGE" "$BINDIR"/"$link" 2>/dev/null
16+
ln -sv "$APPIMAGE" "$BINDIR"/"$b" 2>/dev/null
1717
;;
1818
esac
1919
done

0 commit comments

Comments
 (0)