From fe12f58b81066ed3682a33c2730883765147b539 Mon Sep 17 00:00:00 2001 From: Jens Maus Date: Fri, 30 Oct 2020 09:47:53 +0100 Subject: [PATCH] added x86_64 to the x86 check so that proper binaries are installed in the upcoming x86_64 versions of RaspberryMatic. --- VERSION | 2 +- update_script | 3 ++- 2 files changed, 3 insertions(+), 2 deletions(-) diff --git a/VERSION b/VERSION index a918a2a..ee6cdce 100644 --- a/VERSION +++ b/VERSION @@ -1 +1 @@ -0.6.0 +0.6.1 diff --git a/update_script b/update_script index 4754ed4..453e8a3 100755 --- a/update_script +++ b/update_script @@ -54,7 +54,8 @@ if [ "$1" == "HM-RASPBERRYMATIC" ]; then # copy licenses cp -af ${LICENSES_DIR} ${ADDON_DIR}/ - if [ ${ARCH} == "i686" ]; then + if [[ "${ARCH}" == "i686" ]] || + [[ "${ARCH}" == "x86_64" ]]; then FILE_DIR=x86 else FILE_DIR=arm