detect-hardlinks.sh: Show which files are hard links
[termux-packages] / detect-hardlinks.sh
index 9fd4faf..207e406 100755 (executable)
@@ -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