diff options
Diffstat (limited to 'bin/ak-unfollow')
-rwxr-xr-x | bin/ak-unfollow | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/bin/ak-unfollow b/bin/ak-unfollow index da22809..c23aeef 100755 --- a/bin/ak-unfollow +++ b/bin/ak-unfollow @@ -10,13 +10,13 @@ then sed -i -e 's,'"$search"',,g' $FOLLOWING if [ $? != 0 ] then - logit "ERROR" "sed didn't found $search" + _ak_log_error "sed didn't found $search" exit 1 fi IPFS="$(_ak_ipfs_add $FOLLOWING)" if [ $? != 0 ] then - logit "ERROR" "IPFS problem" + _ak_log_error "IPFS problem" exit 1 fi ak-profile set repositories "$IPFS" |