aboutsummaryrefslogtreecommitdiff
path: root/bin/ak-zchain-rebase
diff options
context:
space:
mode:
Diffstat (limited to 'bin/ak-zchain-rebase')
-rwxr-xr-xbin/ak-zchain-rebase11
1 files changed, 6 insertions, 5 deletions
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