From f333afece1ba9aa79b5491c90ac39b1d6ab851f6 Mon Sep 17 00:00:00 2001 From: OniriCorpe Date: Mon, 8 Jan 2024 18:11:15 +0100 Subject: [PATCH] fix armv7 and amd64 --- manifest.toml | 6 +++--- scripts/_common.sh | 2 +- 2 files changed, 4 insertions(+), 4 deletions(-) diff --git a/manifest.toml b/manifest.toml index f4e2913..eb4481b 100644 --- a/manifest.toml +++ b/manifest.toml @@ -84,14 +84,14 @@ armv6.url = "https://github.com/superseriousbusiness/gotosocial/releases/downloa armv6.sha256 = "207aed157dd418d6a4a7e4cff74de0724e08b0be24cf7208122988a2d9da44cc" arm64.url = "https://github.com/superseriousbusiness/gotosocial/releases/download/v0.8.1/gotosocial_0.8.1_linux_arm64.tar.gz" arm64.sha256 = "671d66a6c7cd6b96b7499bf3e6419a1c4cc9278ff532191c0bcecc025fd4a0db" -armhf.url = "https://github.com/superseriousbusiness/gotosocial/releases/download/v0.8.1/gotosocial_0.8.1_linux_armv7.tar.gz" -armhf.sha256 = "54117d643829ec0c3a8e47d036d2485747d301299964dd33178308e560e1b265" +armv7.url = "https://github.com/superseriousbusiness/gotosocial/releases/download/v0.8.1/gotosocial_0.8.1_linux_armv7.tar.gz" +armv7.sha256 = "54117d643829ec0c3a8e47d036d2485747d301299964dd33178308e560e1b265" autoupdate.asset.i386 = "^gotosocial_.*_linux_386.tar.gz$" autoupdate.asset.amd64 = "^gotosocial_.*_linux_amd64.tar.gz$" autoupdate.asset.armv6 = "^gotosocial_.*_linux_armv6.tar.gz$" autoupdate.asset.arm64 = "^gotosocial_.*_linux_arm64.tar.gz$" -autoupdate.asset.armhf = "^gotosocial_.*_linux_armv7.tar.gz$" +autoupdate.asset.armv7 = "^gotosocial_.*_linux_armv7.tar.gz$" autoupdate.strategy = "latest_github_release" [resources.system_user] diff --git a/scripts/_common.sh b/scripts/_common.sh index bb04d33..a3728d2 100644 --- a/scripts/_common.sh +++ b/scripts/_common.sh @@ -18,7 +18,7 @@ detect_arch(){ if uname -m | grep -q -E "arm64|aarch64" ; then architecture="arm64" elif uname -m | grep -q "64" ; then - architecture="x86-64" + architecture="amd64" elif uname -m | grep -q "86" ; then architecture="i386" elif uname -m | grep -q "armv6" ; then