diff --git a/detect-hardlinks.sh b/detect-hardlinks.sh index fc4a0ee61..5b198ddb4 100755 --- a/detect-hardlinks.sh +++ b/detect-hardlinks.sh @@ -7,7 +7,7 @@ for f in *; do 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