X-Git-Url: https://git.distorted.org.uk/~mdw/termux-packages/blobdiff_plain/858b2fa7484165582eb123b00645c2a3b70b2495..f9c08224a570b582c79412a8f587e6a302961361:/detect-hardlinks.sh diff --git a/detect-hardlinks.sh b/detect-hardlinks.sh index 5b198ddb..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, which will not work on Android 6.0+" + echo "$f contains hardlink, which will not work on Android 6 or later:" + find . -type f -links +1 fi fi done