detect-hardlinks.sh: Be more descriptive

This commit is contained in:
Fredrik Fornwall 2015-09-09 09:56:20 -04:00
parent df1fab9eed
commit 858b2fa748

View File

@ -7,7 +7,7 @@ for f in *; do
if [ -d $f/massage ]; then if [ -d $f/massage ]; then
cd $f/massage cd $f/massage
if [ -n "$(find . -type f -links +1)" ]; then 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
fi fi
done done