Skip to content

Commit

Permalink
Fix incorrect wheels repository for additional Python packages (#181)
Browse files Browse the repository at this point in the history
  • Loading branch information
frenck authored Dec 30, 2021
1 parent 8c4a562 commit b1633e5
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion appdaemon/rootfs/etc/cont-init.d/appdaemon.sh
Original file line number Diff line number Diff line change
Expand Up @@ -42,7 +42,7 @@ if bashio::config.has_value 'python_packages'; then
for package in $(bashio::config 'python_packages'); do
pip3 install \
--prefer-binary \
--find-links "https://wheels.home-assistant.io/alpine-3.13/${arch}/" \
--find-links "https://wheels.home-assistant.io/alpine-3.14/${arch}/" \
"$package" \
|| bashio::exit.nok "Failed installing package ${package}"
done
Expand Down

0 comments on commit b1633e5

Please sign in to comment.