diff options
-rwxr-xr-x | lib/_ak_ipfs | 10 |
1 files changed, 10 insertions, 0 deletions
diff --git a/lib/_ak_ipfs b/lib/_ak_ipfs index 673dafb..db6832e 100755 --- a/lib/_ak_ipfs +++ b/lib/_ak_ipfs @@ -370,6 +370,16 @@ _ak_ipfs_download(){ IPFS_VERSION="$(curl \ --connect-timeout 3 \ -s https://dist.ipfs.tech/kubo/versions | tail -1)" + if [ "$(uname --machine)" == "x86_64" ] + then + ARCH="amd64" + elif [ "$(uname --machine)" == "x86_64" ] + then + ARCH="arm64" + else + echo "ERROR UNKNOWN ARCHITECTURE $(uname --machine)" + exit 1 + fi IPFS_TARGET_FILE="kubo_"$IPFS_VERSION"_linux-amd64.tar.gz" logit "INFO" "Downloading ipfs $IPFS_VERSION" |