Skip to content

Commit

Permalink
Merge pull request #15 from jens-maus/fix-x86_64-support
Browse files Browse the repository at this point in the history
added x86_64 to the x86 check
  • Loading branch information
fhetty authored Nov 2, 2020
2 parents ad198b8 + fe12f58 commit 04f27ee
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 2 deletions.
2 changes: 1 addition & 1 deletion VERSION
Original file line number Diff line number Diff line change
@@ -1 +1 @@
0.6.0
0.6.1
3 changes: 2 additions & 1 deletion update_script
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down

0 comments on commit 04f27ee

Please sign in to comment.