diff options
author | kaotisk <kaotisk@arching-kaos.org> | 2024-05-27 10:56:40 +0300 |
---|---|---|
committer | kaotisk <kaotisk@arching-kaos.org> | 2024-05-27 10:56:40 +0300 |
commit | 2c9df6a4bfc99559fa741a88b7e3041e2b2f9ee8 (patch) | |
tree | 3317441069b359c4f9347ba99458424ccfcc1e8c /bin/ak-sm-hash-to-path | |
parent | 7a52180ec7a2f8b23f29b9a3094c5d015314acc0 (diff) | |
download | arching-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-x | bin/ak-sm-hash-to-path | 8 |
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 ;; *) |