aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorkaotisk <kaotisk@arching-kaos.org>2024-05-08 23:27:30 +0300
committerkaotisk <kaotisk@arching-kaos.org>2024-05-08 23:27:30 +0300
commita5273280e423893f720b0d065e69e1571429e69c (patch)
treed5af2fccb0a36400e3374143a5a56cf46023ef42
parent24b1e8f39302f3a5698e45b3fcc40efdf121262d (diff)
downloadarching-kaos-tools-a5273280e423893f720b0d065e69e1571429e69c.tar.gz
arching-kaos-tools-a5273280e423893f720b0d065e69e1571429e69c.tar.bz2
arching-kaos-tools-a5273280e423893f720b0d065e69e1571429e69c.zip
fix typo
-rwxr-xr-xlib/_ak_fs3
1 files changed, 1 insertions, 2 deletions
diff --git a/lib/_ak_fs b/lib/_ak_fs
index becbac1..20c6979 100755
--- a/lib/_ak_fs
+++ b/lib/_ak_fs
@@ -23,7 +23,6 @@ _ak_verify_input_is_hash(){
_ak_create_dir_for_hash(){
if [ ! -z $1 ] && [ ! -z $2 ] && [ -n "$1" ] && [ -n "$2" ]
then
- mkdir -p "$1/$(_ak_return_hash_diri $2)"
+ mkdir -p "$1/$(_ak_return_hash_dir $2)"
fi
-
}