X-Git-Url: https://git.distorted.org.uk/~mdw/termux-packages/blobdiff_plain/e17efcedb1270e591da17dc0c7b4908ec999e9ae..cdd8e2edc69fe01a992449d5bf890398d72da4ff:/detect-hardlinks.sh diff --git a/detect-hardlinks.sh b/detect-hardlinks.sh index 9fd4fafb..207e4060 100755 --- a/detect-hardlinks.sh +++ b/detect-hardlinks.sh @@ -7,7 +7,8 @@ for f in * */subpackages/*; do 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