diff options
author | kaotisk <kaotisk@arching-kaos.org> | 2024-12-11 17:08:48 +0200 |
---|---|---|
committer | kaotisk <kaotisk@arching-kaos.org> | 2024-12-11 17:08:48 +0200 |
commit | 620ad0b7ddf23fcdff21e18359899d09ab5f5140 (patch) | |
tree | 86bb43fa1c43e6b2b2882c187374aa23af9c528c /lib/_ak_ipfs | |
parent | 9086cec091c36fedae8b239de1fd8ceefd9c83df (diff) | |
download | arching-kaos-tools-620ad0b7ddf23fcdff21e18359899d09ab5f5140.tar.gz arching-kaos-tools-620ad0b7ddf23fcdff21e18359899d09ab5f5140.tar.bz2 arching-kaos-tools-620ad0b7ddf23fcdff21e18359899d09ab5f5140.zip |
More detailed debug messages
Diffstat (limited to 'lib/_ak_ipfs')
-rwxr-xr-x | lib/_ak_ipfs | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/lib/_ak_ipfs b/lib/_ak_ipfs index aba5bad..896db37 100755 --- a/lib/_ak_ipfs +++ b/lib/_ak_ipfs @@ -119,12 +119,12 @@ _ak_ipfs_block_stat(){ _ak_ipfs_files_cp(){ if [ -z $1 ] || [ ! -n "$1" ] then - _ak_log_error "No argument given" + _ak_log_error "Source: No argument given" exit 1 fi if [ -z $2 ] || [ ! -n "$2" ] then - _ak_log_error "No argument given" + _ak_log_error "Destination: No argument given" exit 1 fi _ak_ipfs files cp "$1" "$2" |