diff options
author | kaotisk <kaotisk@arching-kaos.org> | 2024-09-21 18:55:05 +0300 |
---|---|---|
committer | kaotisk <kaotisk@arching-kaos.org> | 2024-09-21 18:55:05 +0300 |
commit | 418f1a61241cda4d3f133d0509ad0e712275a684 (patch) | |
tree | 4a6451104a45926197a4b496f7dde01808e9c176 | |
parent | 38c92c82f9fc4dfe990513e0fd7ada2a8bf21b95 (diff) | |
download | arching-kaos-tools-418f1a61241cda4d3f133d0509ad0e712275a684.tar.gz arching-kaos-tools-418f1a61241cda4d3f133d0509ad0e712275a684.tar.bz2 arching-kaos-tools-418f1a61241cda4d3f133d0509ad0e712275a684.zip |
Further investigating
-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 e6b0655..94f5913 100755 --- a/lib/_ak_ipfs +++ b/lib/_ak_ipfs @@ -12,7 +12,7 @@ _ak_ipfs(){ if [ $? -ne 0 ] then _ak_log_error "Some error occured when running: ipfs $*" - exit 1 + #exit 1 fi } @@ -201,7 +201,7 @@ _ak_ipfs_files_stat(){ if [ $? -ne 0 ] then _ak_log_error "Failed to get file's stats $1" - #exit 1 + exit 1 fi } |