aboutsummaryrefslogtreecommitdiff
path: root/bin/follow
diff options
context:
space:
mode:
Diffstat (limited to 'bin/follow')
-rwxr-xr-xbin/follow14
1 files changed, 0 insertions, 14 deletions
diff --git a/bin/follow b/bin/follow
deleted file mode 100755
index 76851e0..0000000
--- a/bin/follow
+++ /dev/null
@@ -1,14 +0,0 @@
-#!/bin/bash
-FOLLOWING="$HOME/.arching-kaos/following"
-if [ ! -z $1 ]
-then
- echo $1 >> $FOLLOWING
- IPFS=$(ipfs add -q $FOLLOWING)
- if [ $? == 0 ]
- then
- profile set following $IPFS
- else
- logthis "Addition aborted"
- exit 1
- fi
-fi