From 076c7d85267d927d5119c23adb2d880b3caf6f4e Mon Sep 17 00:00:00 2001 From: kaotisk Date: Thu, 12 Dec 2024 20:08:08 +0200 Subject: We actually need this to be the last hash, so here's a workaround --- lib/_ak_fs | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) (limited to 'lib/_ak_fs') diff --git a/lib/_ak_fs b/lib/_ak_fs index dad7dec..a44b852 100755 --- a/lib/_ak_fs +++ b/lib/_ak_fs @@ -42,7 +42,9 @@ function _ak_fs_create_dir_for_hash(){ function _ak_fs_appendLastIfNotEven(){ if [ "$(( $(wc -l "$1" | awk '{ print $1 }') % 2))" -ne 0 ] then - head -n 1 "$1" >> "$1" + tail -n 1 "$1" >> "$1.temp" + cat "$1.temp" >> "$1" + rm $1.temp fi } -- cgit v1.2.3