aboutsummaryrefslogtreecommitdiff
path: root/bin/ak-sm-hash-to-path
diff options
context:
space:
mode:
authorkaotisk <kaotisk@arching-kaos.org>2024-05-27 10:56:40 +0300
committerkaotisk <kaotisk@arching-kaos.org>2024-05-27 10:56:40 +0300
commit2c9df6a4bfc99559fa741a88b7e3041e2b2f9ee8 (patch)
tree3317441069b359c4f9347ba99458424ccfcc1e8c /bin/ak-sm-hash-to-path
parent7a52180ec7a2f8b23f29b9a3094c5d015314acc0 (diff)
downloadarching-kaos-tools-2c9df6a4bfc99559fa741a88b7e3041e2b2f9ee8.tar.gz
arching-kaos-tools-2c9df6a4bfc99559fa741a88b7e3041e2b2f9ee8.tar.bz2
arching-kaos-tools-2c9df6a4bfc99559fa741a88b7e3041e2b2f9ee8.zip
Refactoring
Diffstat (limited to 'bin/ak-sm-hash-to-path')
-rwxr-xr-xbin/ak-sm-hash-to-path8
1 files changed, 4 insertions, 4 deletions
diff --git a/bin/ak-sm-hash-to-path b/bin/ak-sm-hash-to-path
index f08d4d4..b114b1b 100755
--- a/bin/ak-sm-hash-to-path
+++ b/bin/ak-sm-hash-to-path
@@ -23,13 +23,13 @@ case "$1" in
exit 1
;;
-d | --dir)
- _ak_verify_input_is_hash $2
- _ak_return_hash_dir $2
+ _ak_fs_verify_input_is_hash $2
+ _ak_fs_return_hash_dir $2
exit 0
;;
-p | --path)
- _ak_verify_input_is_hash $2
- _ak_return_hash_path $2
+ _ak_fs_verify_input_is_hash $2
+ _ak_fs_return_hash_path $2
exit 0
;;
*)