From: Fredrik Fornwall Date: Wed, 9 Sep 2015 13:56:20 +0000 (-0400) Subject: detect-hardlinks.sh: Be more descriptive X-Git-Url: https://git.distorted.org.uk/~mdw/termux-packages/commitdiff_plain/858b2fa7484165582eb123b00645c2a3b70b2495?hp=df1fab9eedaad9ec88e57933114022e72ba79e33 detect-hardlinks.sh: Be more descriptive --- diff --git a/detect-hardlinks.sh b/detect-hardlinks.sh index fc4a0ee6..5b198ddb 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