akx / hass-ruuvitag

Hass.io addon for Ruuvitag Weather Stations
MIT License
24 stars 7 forks source link

Supervisor assisted addon installation fails #26

Closed Nurffe closed 4 years ago

Nurffe commented 4 years ago

Installation fails with following error when trying to isntall thru supervisor -> add-on store -> Ruuvitag -> Install

hassio-supervisor[14820]: 20-06-19 19:11:23 ERROR (SyncWorker_3) [supervisor.docker.addon] Can't build local/armv7-addon-hello_world:1: The command '/bin/ash -o pipefail -c apk add --no-cache python build-base yarn git' returned a non-zero code: 1

Not sure exactly what's wrong here as command looks ok and shouldn't return 1. However I lack knowledge to debug hassio to get more verbose output whats the issue here so.. Good ideas welcome

Running on raspi3

Stude commented 4 years ago

You need to update container to use python3 instead of python2 (which isn't supported anymore). Required changes: https://github.com/akx/hass-ruuvitag/pull/27

Nurffe commented 4 years ago

Of course. That fixes the issues with docker build

Thanks :)