From 2c9df6a4bfc99559fa741a88b7e3041e2b2f9ee8 Mon Sep 17 00:00:00 2001 From: kaotisk Date: Mon, 27 May 2024 10:56:40 +0300 Subject: Refactoring --- bin/ak-fs-add | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) (limited to 'bin/ak-fs-add') diff --git a/bin/ak-fs-add b/bin/ak-fs-add index 0011faf..f22432b 100755 --- a/bin/ak-fs-add +++ b/bin/ak-fs-add @@ -183,16 +183,16 @@ do sed -n "$a"p "$workingIndex" | awk '{ print $1 }' >> level.$c.pair.$a-$b sed -n "$b"p "$workingIndex" | awk '{ print $1 }' >> level.$c.pair.$a-$b shaSum="$(sha512sum level.$c.pair.$a-$b | awk '{ print $1 }')" - mkdir -p $MERKLEDIR/$(_ak_return_hash_dir $shaSum) - cp level.$c.pair.$a-$b $MERKLEDIR/$(_ak_return_hash_path $shaSum) + mkdir -p $MERKLEDIR/$(_ak_fs_return_hash_dir $shaSum) + cp level.$c.pair.$a-$b $MERKLEDIR/$(_ak_fs_return_hash_path $shaSum) sha512sum level.$c.pair.$a-$b | awk '{ print $1 }' >> level.$c.map a=`expr "$a" + 2` done workingIndex="level.$c.map" appendLastIfNotEven "$workingIndex" shaSum=`sha512sum $workingIndex | awk '{ print $1 }'` - mkdir -p $MERKLEDIR/$(_ak_return_hash_dir $shaSum) - cp $workingIndex $MERKLEDIR/$(_ak_return_hash_path $shaSum) + mkdir -p $MERKLEDIR/$(_ak_fs_return_hash_dir $shaSum) + cp $workingIndex $MERKLEDIR/$(_ak_fs_return_hash_path $shaSum) # cp $workingIndex $MERKLEDIR/$shaSum totalChunks=`cat $workingIndex | wc -l` c=`expr $c - 1` -- cgit v1.2.3