X-Git-Url: https://git.distorted.org.uk/~mdw/termux-packages/blobdiff_plain/9e7e94c87f04af18ff0f57dcca4b5dc89a8764e1..4245f247d66fb2e9aceda2d28583d46f03a127e5:/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