X-Git-Url: https://git.distorted.org.uk/~mdw/termux-packages/blobdiff_plain/426d37e39f50f81a4e413096a8b51bef6b9e88f5..9e7e94c87f04af18ff0f57dcca4b5dc89a8764e1:/detect-hardlinks.sh diff --git a/detect-hardlinks.sh b/detect-hardlinks.sh index fc4a0ee6..9fd4fafb 100755 --- a/detect-hardlinks.sh +++ b/detect-hardlinks.sh @@ -2,12 +2,12 @@ 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" + echo "$f contains hardlink, which will not work on Android 6.0+" fi fi done