Browse Source

termux-tools: fix termux-fix-shebang script (#888)

android-5
Leonid Plyushch 8 years ago
committed by Fredrik Fornwall
parent
commit
586d8a2a14
  1. 5
      packages/termux-tools/termux-fix-shebang

5
packages/termux-tools/termux-fix-shebang

@ -7,7 +7,6 @@ if [ $# = 0 -o "$1" = "-h" ]; then
exit 1 exit 1
fi fi
for file in $@; do for file in "$@"; do
# Do realpath to avoid breaking symlinks (modify original file): sed -i -E "1 s@^#\!(.*)/[sx]?bin/(.*)@#\!/data/data/com.termux/files/usr/bin/\2@" "$(realpath "${file}")"
sed -i -E "1 s@^#\!(.*)/bin/(.*)@#\!/data/data/com.termux/files/usr/bin/\2@" `realpath $@`
done done

Loading…
Cancel
Save