diff options
author | kaotisk <kaotisk@arching-kaos.org> | 2024-03-27 09:34:01 +0200 |
---|---|---|
committer | kaotisk <kaotisk@arching-kaos.org> | 2024-03-27 09:34:01 +0200 |
commit | 465d5db06e56dc21072a8ff01258f6815d340b00 (patch) | |
tree | ae16ecf2f980b054caa2f97f48e8fa5f22b768a6 /bin/ak-unfollow | |
parent | 1cb6c8bef840a96baa37392e9833a7674f805a83 (diff) | |
download | arching-kaos-tools-465d5db06e56dc21072a8ff01258f6815d340b00.tar.gz arching-kaos-tools-465d5db06e56dc21072a8ff01258f6815d340b00.tar.bz2 arching-kaos-tools-465d5db06e56dc21072a8ff01258f6815d340b00.zip |
new lib _ak_ipfs
Diffstat (limited to 'bin/ak-unfollow')
-rwxr-xr-x | bin/ak-unfollow | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/bin/ak-unfollow b/bin/ak-unfollow index 07940f9..2b39c94 100755 --- a/bin/ak-unfollow +++ b/bin/ak-unfollow @@ -8,13 +8,13 @@ then sed -i -e 's,'"$search"',,g' $FOLLOWING if [ $? != 0 ] then - ak-logthis "$PROGRAM" "ERROR" "sed didn't found $search" + logit "ERROR" "sed didn't found $search" exit 1 fi - IPFS="$(ak-ipfs-add $FOLLOWING)" + IPFS="$(_ak_ipfs_add $FOLLOWING)" if [ $? != 0 ] then - ak-logthis "$PROGRAM" "ERROR" "IPFS problem" + logit "ERROR" "IPFS problem" exit 1 fi ak-profile set repositories "$IPFS" |