|
@@ -408,13 +408,13 @@ function mesh_install_ipfs_go {
|
408
|
408
|
if [[ $ARCHITECTURE == *"amd64" || $ARCHITECTURE == "x86_64" ]]; then
|
409
|
409
|
IPFS_ARCH=amd64
|
410
|
410
|
fi
|
411
|
|
- if [[ $ARCHITECTURE == *"arm"* ]]; then
|
|
411
|
+ if [[ $ARCHITECTURE == *"arm"* || $ARCHITECTURE == *"aarch"* ]]; then
|
412
|
412
|
IPFS_ARCH=arm
|
413
|
413
|
fi
|
414
|
414
|
if [ ! $IPFS_ARCH ]; then
|
415
|
415
|
echo $'No architecture specified'
|
416
|
416
|
ARCHITECTURE=$(uname -m)
|
417
|
|
- if [[ $ARCHITECTURE == "arm"* ]]; then
|
|
417
|
+ if [[ $ARCHITECTURE == "arm"* || $ARCHITECTURE == *"aarch"* ]]; then
|
418
|
418
|
IPFS_ARCH=arm
|
419
|
419
|
echo $"Using $IPFS_ARCH"
|
420
|
420
|
fi
|