aboutsummaryrefslogtreecommitdiff
path: root/lib/_ak_fs
diff options
context:
space:
mode:
authorkaotisk <kaotisk@arching-kaos.org>2024-12-12 19:21:08 +0200
committerkaotisk <kaotisk@arching-kaos.org>2024-12-12 19:21:08 +0200
commit4d9759073ffb5f916eb4ae00c6c1ed78be9eb372 (patch)
treed651c7982113db427b9f00bcd6c5f846d4120c67 /lib/_ak_fs
parent6ee65131e241c486eb9ceb0f802bf704b463ebe9 (diff)
downloadarching-kaos-tools-4d9759073ffb5f916eb4ae00c6c1ed78be9eb372.tar.gz
arching-kaos-tools-4d9759073ffb5f916eb4ae00c6c1ed78be9eb372.tar.bz2
arching-kaos-tools-4d9759073ffb5f916eb4ae00c6c1ed78be9eb372.zip
Fixing weird bug from tail program on FreeBSD
Diffstat (limited to 'lib/_ak_fs')
-rwxr-xr-xlib/_ak_fs2
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/_ak_fs b/lib/_ak_fs
index fb493c3..10f4f17 100755
--- a/lib/_ak_fs
+++ b/lib/_ak_fs
@@ -42,7 +42,7 @@ function _ak_fs_create_dir_for_hash(){
function _ak_fs_appendLastIfNotEven(){
if [ "$(( $(wc -l "$1" | awk '{ print $1 }') % 2))" -ne 0 ]
then
- tail -n 1 "$1" >> "$1"
+ head -n 1 "$1" >> "$1"
fi
}