From 45e8aacd266490b84619be0f38c30bad1b475107 Mon Sep 17 00:00:00 2001 From: kaotisk Date: Tue, 10 Dec 2024 19:52:25 +0200 Subject: Workaround for du freebsd variant --- lib/_ak_fs | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'lib/_ak_fs') diff --git a/lib/_ak_fs b/lib/_ak_fs index 127e40e..02b789e 100755 --- a/lib/_ak_fs +++ b/lib/_ak_fs @@ -153,7 +153,7 @@ _ak_fs_import(){ # We get the SHA512 hash for the $FILE given CHECKSUM=$(sha512sum "$FILE"|awk '{print $1}') - FILE_SIZE="$(du -b $FILE | awk '{ print $1 }')" + FILE_SIZE="$( (du -b $FILE||du -A $FILE)2>/dev/null | awk '{ print $1 }')" if [ $FILE_SIZE -lt 4097 ] then cp $FILE "$TECHDIR/$(basename "$FILE")-00000000000000000000000000000000000000000000000000.chk" @@ -274,7 +274,7 @@ _ak_fs_find_depth(){ currentNode="$1" #pathToNode="$AK_LEAFSDIR/$(_ak_fs_return_hash_path $currentNode)" pathToNode="$AK_LEAFSDIR/$currentNode" - if [ -f $pathToNode ] && [ "$(du -b $pathToNode | awk '{print $1}')" == "258" ] + if [ -f $pathToNode ] && [ "$( (du -b $pathToNode||du -A $pathToNode)2>/dev/null | awk '{print $1}')" == "258" ] then fileHead="$(head -n 1 $pathToNode)" counter="$(expr $counter + 1)" -- cgit v1.2.3