From a4ec6bdc1de54ff75be16ba26ce00551cc787ddb Mon Sep 17 00:00:00 2001 From: oiseauroch <5622590+oiseauroch@users.noreply.github.com> Date: Fri, 26 Mar 2021 10:32:46 +0000 Subject: [PATCH] feat: add aarch64 support --- manifest.json | 2 +- scripts/_common.sh | 3 +++ 2 files changed, 4 insertions(+), 1 deletion(-) diff --git a/manifest.json b/manifest.json index ad59438..7b55cd4 100644 --- a/manifest.json +++ b/manifest.json @@ -6,7 +6,7 @@ "en": "Backup your server with restic.", "fr": "Sauvegardez votre serveur avec restic." }, - "version": "0.12.0~ynh8", + "version": "0.12.0~ynh9", "url": "https://restic.net/", "license": "BSD-2-Clause", "maintainer": { diff --git a/scripts/_common.sh b/scripts/_common.sh index 6484835..542266f 100644 --- a/scripts/_common.sh +++ b/scripts/_common.sh @@ -21,6 +21,9 @@ install_restic () { armv*) arch=arm ;; + aarch64) + arch=arm64 + ;; *) echo ynh_die --message="Unsupported architecture \"$architecture\""