"$architecture" == armv7l x86_64 aarch64

This commit is contained in:
fred 2023-01-08 01:42:39 +01:00
parent a72436ef5c
commit 9f56e31bb9
1 changed files with 2 additions and 0 deletions

2
kubo_v0.16.0_linux.install.sh Executable file → Normal file
View File

@ -12,6 +12,8 @@ if [ "$architecture" == "x86_64" ]; then
wget https://dist.ipfs.tech/kubo/v0.16.0/kubo_v0.16.0_linux-amd64.tar.gz
elif [ "$architecture" == "aarch64" ]; then
wget https://dist.ipfs.tech/kubo/v0.16.0/kubo_v0.16.0_linux-arm64.tar.gz
elif [ "$architecture" == "armv7l" ]; then
wget https://dist.ipfs.tech/kubo/v0.16.0/kubo_v0.16.0_linux-arm.tar.gz
else
echo "Error: Unknown architecture"
exit 1