From 4245f247d66fb2e9aceda2d28583d46f03a127e5 Mon Sep 17 00:00:00 2001 From: Fredrik Fornwall Date: Sun, 11 Oct 2015 11:32:19 -0400 Subject: [PATCH 1/1] detect-hardlinks.sh: Show which files are hard links --- detect-hardlinks.sh | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/detect-hardlinks.sh b/detect-hardlinks.sh index 9fd4fafb..207e4060 100755 --- a/detect-hardlinks.sh +++ b/detect-hardlinks.sh @@ -7,7 +7,8 @@ for f in * */subpackages/*; do if [ -d $f/massage ]; then cd $f/massage if [ -n "$(find . -type f -links +1)" ]; then - echo "$f contains hardlink, which will not work on Android 6.0+" + echo "$f contains hardlink, which will not work on Android 6 or later:" + find . -type f -links +1 fi fi done -- 2.11.0