aboutsummaryrefslogtreecommitdiff
path: root/bin
diff options
context:
space:
mode:
authorkaotisk <kaotisk@arching-kaos.org>2024-03-02 17:25:43 +0200
committerkaotisk <kaotisk@arching-kaos.org>2024-03-02 17:25:43 +0200
commitcfdeb61252a100d660c047a4ea1eb5a38bba705b (patch)
treea617801570003c7a5e28d2a48d82a8e87490a222 /bin
parent1894d8cb5c4050de216f905f8ebbfcc1e7c8d58a (diff)
downloadarching-kaos-tools-cfdeb61252a100d660c047a4ea1eb5a38bba705b.tar.gz
arching-kaos-tools-cfdeb61252a100d660c047a4ea1eb5a38bba705b.tar.bz2
arching-kaos-tools-cfdeb61252a100d660c047a4ea1eb5a38bba705b.zip
Clean up leftovers from refactoring ak-logthis
Diffstat (limited to 'bin')
-rwxr-xr-xbin/ak-todos12
-rwxr-xr-xbin/ak-zblock-manipulator2
2 files changed, 7 insertions, 7 deletions
diff --git a/bin/ak-todos b/bin/ak-todos
index 741a2f9..621fe61 100755
--- a/bin/ak-todos
+++ b/bin/ak-todos
@@ -13,9 +13,9 @@ if [ ! -d $ZTODOSDIR ]; then
echo "Qmetc" >> README
git add README
git commit -m "Initiated todos repository"
- logit "[INFO]" "ztodosdir created along with git repo"
+ logit "INFO" "ztodosdir created along with git repo"
else
- logit "[INFO]" "ztodosdir found"
+ logit "INFO" "ztodosdir found"
fi
_ak_modules_todos_create(){
@@ -23,14 +23,14 @@ _ak_modules_todos_create(){
cd $TEMP
export TODOS_FILE="$(date -u +%s)"
vi $TODOS_FILE
- logit "[INFO]" "Renaming..."
+ logit "INFO" "Renaming..."
TITLE="$(head -n 1 $TODOS_FILE)"
TO_FILE=$TODOS_FILE-$(echo $TITLE | tr '[:upper:]' '[:lower:]' | sed -e 's/ /\_/g' )
IPFS_FILE=$(ak-ipfs-add $TODOS_FILE)
mv $TODOS_FILE $ZTODOSDIR/$TO_FILE
sed -e 's,Qm.*,'"$IPFS_FILE"',g' $ZTODOSDIR/README
_ak_modules_todos_add $ZTODOSDIR/$TO_FILE
- logit "[INFO]" "Adding to git repo..."
+ logit "INFO" "Adding to git repo..."
cd $ZTODOSDIR
git add $TO_FILE README
git commit -m "Added $TO_FILE with $(head -n 1 $ZTODOSDIR/$TO_FILE)"
@@ -79,7 +79,7 @@ _ak_modules_todos_add(){
cd $TEMP
if [ -f $1 ]; then
FILE="$1"
- logit "[INFO]" "Adding todos from $FILE"
+ logit "INFO" "Adding todos from $FILE"
DATETIME=$(echo $FILE | cut -d - -f 1 | awk '{print $1}')
TITLE=$(head -n 1 $FILE)
FILE_IPFS_HASH=$(ak-ipfs-add $FILE)
@@ -102,7 +102,7 @@ EOF
ak-zblock-pack "todos/add" $(pwd)/data
if [ $? == 0 ]
then
- logit "[INFO]" "Todos added successfully"
+ logit "INFO" "Todos added successfully"
else
echo "error??"
exit 1
diff --git a/bin/ak-zblock-manipulator b/bin/ak-zblock-manipulator
index 6a4c700..ab78053 100755
--- a/bin/ak-zblock-manipulator
+++ b/bin/ak-zblock-manipulator
@@ -46,7 +46,7 @@ usage(){
main(){
- logit "[INFO]" "We are doing" $BLOCK_TO_ADD "with content" $PREVIOUS
+ logit "INFO" "We are doing" $BLOCK_TO_ADD "with content" $PREVIOUS
# We add it to IPFS
MESSAGE_HASH=$(ak-ipfs-add $MESSAGE)