detect-hardlinks.sh: Be more descriptive
authorFredrik Fornwall <fredrik@fornwall.net>
Wed, 9 Sep 2015 13:56:20 +0000 (09:56 -0400)
committerFredrik Fornwall <fredrik@fornwall.net>
Wed, 9 Sep 2015 13:56:20 +0000 (09:56 -0400)
detect-hardlinks.sh

index fc4a0ee..5b198dd 100755 (executable)
@@ -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