From 465d5db06e56dc21072a8ff01258f6815d340b00 Mon Sep 17 00:00:00 2001 From: kaotisk Date: Wed, 27 Mar 2024 09:34:01 +0200 Subject: new lib _ak_ipfs --- bin/ak-zchain-rebase | 11 ++++++----- 1 file changed, 6 insertions(+), 5 deletions(-) (limited to 'bin/ak-zchain-rebase') diff --git a/bin/ak-zchain-rebase b/bin/ak-zchain-rebase index a798fbe..f0687eb 100755 --- a/bin/ak-zchain-rebase +++ b/bin/ak-zchain-rebase @@ -1,5 +1,6 @@ #!/bin/bash PROGRAM=$(basename $0) +source $AK_LIBDIR/_ak_ipfs usage(){ echo "$PROGRAM - Zchain rebase" echo "" @@ -21,24 +22,24 @@ rebase (){ if [ $? != 0 ]; then exit 1; fi echo "Make sure /zarchive folder exists within IPFS FS" - ak-ipfs-files-mkdir /zarchive + _ak_ipfs_files_mkdir /zarchive if [ $? != 0 ]; then echo "Folder already there"; fi echo "Archive the previous ZLATEST" - ak-ipfs-files-cp /zlatest /zarchive/$(date -u +%s)-$(ak-ipfs-files-stat /zlatest | head -n 1) + _ak_ipfs_files_cp /zlatest /zarchive/$(date -u +%s)-$(_ak_ipfs_files_stat /zlatest | head -n 1) if [ $? != 0 ]; then exit 1; fi echo "Removing previous /zlatest entry" - ak-ipfs-files-rm /zlatest + _ak_ipfs_files_rm /zlatest if [ $? != 0 ]; then exit 1; fi echo "Copying rebased ZLATEST" CZLATEST="$(cat $AK_ZLATEST)" - ak-ipfs-files-cp /ipfs/$CZLATEST /zlatest + _ak_ipfs_files_cp /ipfs/$CZLATEST /zlatest if [ $? != 0 ]; then exit 1; fi echo "Publishing new (rebased) ZLATEST" - ak-ipfs-name-publish --key=zchain /ipfs/$(cat $AK_ZLATEST) + _ak_ipfs_name_publish --key=zchain /ipfs/$(cat $AK_ZLATEST) if [ $? != 0 ]; then exit 1; fi ak-config publish -- cgit v1.2.3