X-Git-Url: https://git.distorted.org.uk/~mdw/termux-packages/blobdiff_plain/426d37e39f50f81a4e413096a8b51bef6b9e88f5..2909a1a38d6c8e1ebb9566cf27ddedee12cbb7d4:/detect-hardlinks.sh diff --git a/detect-hardlinks.sh b/detect-hardlinks.sh index fc4a0ee6..207e4060 100755 --- a/detect-hardlinks.sh +++ b/detect-hardlinks.sh @@ -2,12 +2,13 @@ cd $HOME/termux -for f in *; do +for f in * */subpackages/*; do cd $HOME/termux if [ -d $f/massage ]; then cd $f/massage if [ -n "$(find . -type f -links +1)" ]; then - echo "$f contains hardlink" + echo "$f contains hardlink, which will not work on Android 6 or later:" + find . -type f -links +1 fi fi done