1
0
Fork 0
mirror of https://github.com/YunoHost-Apps/restic_ynh.git synced 2024-09-03 20:16:22 +02:00

feat: add aarch64 support

This commit is contained in:
oiseauroch 2021-03-26 10:32:46 +00:00 committed by Lionel Coupouchetty-Ramouchetty
parent 5760096cd1
commit a4ec6bdc1d
2 changed files with 4 additions and 1 deletions

View file

@ -6,7 +6,7 @@
"en": "Backup your server with restic.", "en": "Backup your server with restic.",
"fr": "Sauvegardez votre serveur avec restic." "fr": "Sauvegardez votre serveur avec restic."
}, },
"version": "0.12.0~ynh8", "version": "0.12.0~ynh9",
"url": "https://restic.net/", "url": "https://restic.net/",
"license": "BSD-2-Clause", "license": "BSD-2-Clause",
"maintainer": { "maintainer": {

View file

@ -21,6 +21,9 @@ install_restic () {
armv*) armv*)
arch=arm arch=arm
;; ;;
aarch64)
arch=arm64
;;
*) *)
echo echo
ynh_die --message="Unsupported architecture \"$architecture\"" ynh_die --message="Unsupported architecture \"$architecture\""