libgpg-error: Update from 1.20 to 1.21
[termux-packages] / detect-hardlinks.sh
index 5b198dd..207e406 100755 (executable)
@@ -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