gnupg2: Update to 2.1.9
[termux-packages] / detect-hardlinks.sh
CommitLineData
426d37e3
FF
1#!/bin/sh
2
3cd $HOME/termux
4
5for f in *; do
6 cd $HOME/termux
7 if [ -d $f/massage ]; then
8 cd $f/massage
9 if [ -n "$(find . -type f -links +1)" ]; then
858b2fa7 10 echo "$f contains hardlink, which will not work on Android 6.0+"
426d37e3
FF
11 fi
12 fi
13done