diff options
author | kaotisk <kaotisk@arching-kaos.org> | 2024-03-27 10:47:05 +0200 |
---|---|---|
committer | kaotisk <kaotisk@arching-kaos.org> | 2024-03-27 10:47:05 +0200 |
commit | 23a61661f03c03a357ad8aa47ba3595fabe24de1 (patch) | |
tree | 1c26c7f10ff2e171010f04048089d200b900fbf0 | |
parent | 10c50c113fe6260ddf02df85b81b6af91d9225f0 (diff) | |
download | arching-kaos-tools-23a61661f03c03a357ad8aa47ba3595fabe24de1.tar.gz arching-kaos-tools-23a61661f03c03a357ad8aa47ba3595fabe24de1.tar.bz2 arching-kaos-tools-23a61661f03c03a357ad8aa47ba3595fabe24de1.zip |
leftovers from obsoletion
-rwxr-xr-x | bin/ak-enter | 2 | ||||
-rwxr-xr-x | bin/ak-zchain-chk | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/bin/ak-enter b/bin/ak-enter index 9d9efc5..3828e04 100755 --- a/bin/ak-enter +++ b/bin/ak-enter @@ -85,7 +85,7 @@ while [ "$#" ]; do ipns=$1 shift ol=$1 - entrance="$(ak-ipns-resolve $1)" + entrance="$(_ak_ipns_resolve $1)" if [ "$?" -ne 0 ] then logit "ERROR" "Could not resolve IPNS name" diff --git a/bin/ak-zchain-chk b/bin/ak-zchain-chk index 4e509ac..bee7f91 100755 --- a/bin/ak-zchain-chk +++ b/bin/ak-zchain-chk @@ -26,7 +26,7 @@ then entrance="$(cat $AK_ZLATEST)" elif [ ! -z "$1" ] && [ "$1" == "-n" ] || [ "$1" == "--chain" ] then - entrance="$(ak-ipns-resolve $2)" + entrance="$(_ak_ipns_resolve $2)" elif [ ! -z "$1" ] then entrance="$1" |