diff --git a/addons_updater/rootfs/etc/cont-init.d/run b/addons_updater/rootfs/etc/cont-init.d/run index 3d71412b8..06ada2c55 100644 --- a/addons_updater/rootfs/etc/cont-init.d/run +++ b/addons_updater/rootfs/etc/cont-init.d/run @@ -26,10 +26,10 @@ for addons in $(bashio::config "addon|keys"); do #If beta flag, select beta version if [ ${BETA} = true ]; then bashio::log.info "... $SLUG : beta is on" - LASTVERSION=$(lastversion --pre $UPSTREAM) + LASTVERSION=$(lastversion --pre https://github.com/$UPSTREAM) else bashio::log.info "... $SLUG : beta is off" - LASTVERSION=$(lastversion $UPSTREAM) + LASTVERSION=$(lastversion https://github.com/$UPSTREAM) fi if [ ${CURRENT} != ${LASTVERSION} ]; then