PublicFiles/Artian-Apps/apps/Syncthing/install

17 lines
492 B
Bash

#!/bin/bash
filepath_32="https://apt.syncthing.net/dists/syncthing/stable/binary-armhf/syncthing_1.23.7_armhf.deb"
filepath_64="https://apt.syncthing.net/dists/syncthing/stable/binary-arm64/syncthing_1.23.7_arm64.deb"
case "$arch" in
"64")
install_packages "${filepath_64}" || error "Failed to install syncthing"
;;
"32")
install_packages "${filepath_32}" || error "Failed to install syncthing"
;;
*)
error "arch variable is not set, can not continue"
;;
esac